Impression Counter

Count the total activity of selected tweets.

Vad är Impression Counter?

Impression Counter är en Chrome-tillägg utvecklad av http://slogansocial.com, och dess huvudfunktion är "Count the total activity of selected tweets.".

Tilläggsskärmbilder

screenshot

Ladda ner Impression Counter-förlängningens CRX-fil

Ladda ner Impression Counter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Impression Counter Impression Counter
ID okdfhnhmohlnbmhikficilhigmjlaofd
Officiell webbadress https://chrome.google.com/webstore/detail/impression-counter/okdfhnhmohlnbmhikficilhigmjlaofd
Beskrivning Count the total activity of selected tweets.
Filstorlek 39.02 KB
Antal Installationer 27
Aktuell Version 1.4.1
Senast Uppdaterad 2018-01-29
Publiceringsdatum 2018-01-29
Betyg 1.00/5 Totalt 1 Betyg
Utvecklare http://slogansocial.com
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}