Impression Counter

Count the total activity of selected tweets.

Hvad er Impression Counter?

Impression Counter er en Chrome-udvidelse udviklet af http://slogansocial.com, og dens hovedfunktion er "Count the total activity of selected tweets.".

Udvidelsesskærmbilleder

screenshot

Download Impression Counter-udvidelses-CRX-fil

Download Impression Counter-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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!                    

Grundlæggende oplysninger om udvidelsen

Navn Impression Counter Impression Counter
ID okdfhnhmohlnbmhikficilhigmjlaofd
Officiel URL https://chrome.google.com/webstore/detail/impression-counter/okdfhnhmohlnbmhikficilhigmjlaofd
Beskrivelse Count the total activity of selected tweets.
Filstørrelse 39.02 KB
Antal Installationer 27
Nuværende Version 1.4.1
Senest Opdateret 2018-01-29
Udgivelsesdato 2018-01-29
Bedømmelse 1.00/5 Samlet 1 Bedømmelser
Udvikler http://slogansocial.com
Betalingsmetode free
Understøttede Sprog 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"
            ]
        }
    ]
}