Impression Counter

Count the total activity of selected tweets.

Apa itu Impression Counter?

Impression Counter adalah ekstensi Chrome yang dikembangkan oleh http://slogansocial.com, dan fitur utamanya adalah "Count the total activity of selected tweets.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Impression Counter

Unduh file ekstensi Impression Counter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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!                    

Informasi Dasar Ekstensi

Nama Impression Counter Impression Counter
ID okdfhnhmohlnbmhikficilhigmjlaofd
URL Resmi https://chrome.google.com/webstore/detail/impression-counter/okdfhnhmohlnbmhikficilhigmjlaofd
Deskripsi Count the total activity of selected tweets.
Ukuran File 39.02 KB
Jumlah Instalasi 27
Versi Saat Ini 1.4.1
Terakhir Diperbarui 2018-01-29
Tanggal Publikasi 2018-01-29
Penilaian 1.00/5 Total 1 Penilaian
Pengembang http://slogansocial.com
Tipe Pembayaran free
Bahasa yang Didukung 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"
            ]
        }
    ]
}