Impression Counter
Count the total activity of selected tweets.
Что такое Impression Counter?
Impression Counter - это расширение Chrome, разработанное http://slogansocial.com, и его основная функция - "Count the total activity of selected tweets.".
Снимки экрана расширения
Скачать файл CRX расширения Impression Counter
Скачайте файлы расширений Impression Counter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Select multiple tweets to see their total impressions, engagements, and URL clicks. Click the extension icon in the top right to start selecting. *Must have Twitter analytics turned on* TIP: Select a tweet and shit+select a tweet below it to auto select all tweets in between!
Основная информация о расширении
Название | |
ID | okdfhnhmohlnbmhikficilhigmjlaofd |
Официальный URL | https://chrome.google.com/webstore/detail/impression-counter/okdfhnhmohlnbmhikficilhigmjlaofd |
Описание | Count the total activity of selected tweets. |
Размер файла | 39.02 KB |
Количество установок | 27 |
Текущая Версия | 1.4.1 |
Последнее Обновление | 2018-01-29 |
Дата публикации | 2018-01-29 |
Рейтинг | 1.00/5 Всего 1 оценок |
Разработчик | http://slogansocial.com |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Impression Counter", "description": "Count the total activity of selected tweets.", "version": "1.4.1", "browser_action": { "default_icon": "icon.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "js": [ "jquery-3.2.1.min.js", "content.js" ], "css": [ "content.css" ] } ] } |