Impression Counter
Count the total activity of selected tweets.
Co to jest Impression Counter?
Impression Counter to rozszerzenie Chrome opracowane przez http://slogansocial.com, a jego główną funkcją jest „Count the total activity of selected tweets.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Impression Counter
Pobierz pliki rozszerzeń Impression Counter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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!
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | okdfhnhmohlnbmhikficilhigmjlaofd |
Oficjalny URL | https://chrome.google.com/webstore/detail/impression-counter/okdfhnhmohlnbmhikficilhigmjlaofd |
Opis | Count the total activity of selected tweets. |
Rozmiar pliku | 39.02 KB |
Liczba instalacji | 27 |
Aktualna Wersja | 1.4.1 |
Ostatnia Aktualizacja | 2018-01-29 |
Data Publikacji | 2018-01-29 |
Ocena | 1.00/5 Łącznie 1 Oceny |
Deweloper | http://slogansocial.com |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } ] } |