Impression Counter

Count the total activity of selected tweets.

Cos'è Impression Counter?

Impression Counter è un'estensione di Chrome sviluppata da http://slogansocial.com, e la sua funzione principale è "Count the total activity of selected tweets.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Impression Counter

Scarica i file di estensione Impression Counter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Impression Counter Impression Counter
ID okdfhnhmohlnbmhikficilhigmjlaofd
URL Ufficiale https://chrome.google.com/webstore/detail/impression-counter/okdfhnhmohlnbmhikficilhigmjlaofd
Descrizione Count the total activity of selected tweets.
Dimensione del File 39.02 KB
Conteggio Installazioni 27
Versione Corrente 1.4.1
Ultimo Aggiornamento 2018-01-29
Data di Pubblicazione 2018-01-29
Valutazione 1.00/5 Totale 1 Valutazioni
Sviluppatore http://slogansocial.com
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}