Impression Counter

Count the total activity of selected tweets.

What is Impression Counter?

Impression Counter is a Chrome extension developed by http://slogansocial.com, and its main feature is "Count the total activity of selected tweets.".

Extension Screenshots

screenshot

Download Impression Counter Extension CRX File

Download Impression Counter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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!                    

Extension Basic Information

Name Impression Counter Impression Counter
ID okdfhnhmohlnbmhikficilhigmjlaofd
Official URL https://chrome.google.com/webstore/detail/impression-counter/okdfhnhmohlnbmhikficilhigmjlaofd
Description Count the total activity of selected tweets.
File Size 39.02 KB
Installation Count 27
Current Version 1.4.1
Last Updated 2018-01-29
Publish Date 2018-01-29
Rating 1.00/5 Total 1 Ratings
Developer http://slogansocial.com
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}