Impression Counter
Count the total activity of selected tweets.
¿Qué es Impression Counter?
Impression Counter es una extensión de Chrome desarrollada por http://slogansocial.com, y su función principal es "Count the total activity of selected tweets.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Impression Counter
Descarga archivos de extensión Impression Counter en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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!
Información Básica de la Extensión
Nombre | |
ID | okdfhnhmohlnbmhikficilhigmjlaofd |
URL Oficial | https://chrome.google.com/webstore/detail/impression-counter/okdfhnhmohlnbmhikficilhigmjlaofd |
Descripción | Count the total activity of selected tweets. |
Tamaño del Archivo | 39.02 KB |
Cantidad de Instalaciones | 27 |
Versión Actual | 1.4.1 |
Última Actualización | 2018-01-29 |
Fecha de Publicación | 2018-01-29 |
Calificación | 1.00/5 Total de 1 Calificaciones |
Desarrollador | http://slogansocial.com |
Tipo de Pago | free |
Idiomas Soportados | 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" ] } ] } |