function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } const _path = _interopRequireDefault(require('path')); module.exports = Ferdium => { const getMessages = () => { const elementNotify = document.querySelectorAll('.notify'); const elementFeed = document.querySelectorAll( '.unreadCounter.ng-binding.ng-scope', ); let countNotify = 0; let countFeed = 0; for (const element of elementNotify) { const splitText = element.title.split(':'); countNotify += Ferdium.safeParseInt(splitText[1]); } for (const element of elementFeed) { countFeed += Ferdium.safeParseInt(element.textContent); } Ferdium.setBadge(countNotify, countFeed); }; Ferdium.loop(getMessages); Ferdium.injectCSS(_path.default.join(__dirname, 'service.css')); Ferdium.injectCSS(_path.default.join(__dirname, 'crpk-resources/fonts.css')); };