Impression Counter

Count the total activity of selected tweets.

Was ist Impression Counter?

Impression Counter ist eine Chrome-Erweiterung, die von http://slogansocial.com entwickelt wurde, und ihr Hauptmerkmal ist "Count the total activity of selected tweets.".

Erweiterungsscreenshots

screenshot

Impression Counter-Erweiterungs-CRX-Datei herunterladen

Laden Sie Impression Counter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Impression Counter Impression Counter
ID okdfhnhmohlnbmhikficilhigmjlaofd
Offizielle URL https://chrome.google.com/webstore/detail/impression-counter/okdfhnhmohlnbmhikficilhigmjlaofd
Beschreibung Count the total activity of selected tweets.
Dateigröße 39.02 KB
Installationsanzahl 27
Aktuelle Version 1.4.1
Letztes Update 2018-01-29
Veröffentlichungsdatum 2018-01-29
Bewertung 1.00/5 Insgesamt 1 Bewertungen
Entwickler http://slogansocial.com
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}