Impression Counter

Count the total activity of selected tweets.

Impression Counter là gì?

Impression Counter là một tiện ích mở rộng Chrome được phát triển bởi http://slogansocial.com, và tính năng chính của nó là "Count the total activity of selected tweets.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Impression Counter

Tải xuống các tệp mở rộng Impression Counter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Impression Counter Impression Counter
ID okdfhnhmohlnbmhikficilhigmjlaofd
URL Chính Thức https://chrome.google.com/webstore/detail/impression-counter/okdfhnhmohlnbmhikficilhigmjlaofd
Mô tả Count the total activity of selected tweets.
Kích Thước Tệp 39.02 KB
Số Lần Cài Đặt 27
Phiên Bản Hiện Tại 1.4.1
Cập Nhật Lần Cuối 2018-01-29
Ngày Phát Hành 2018-01-29
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển http://slogansocial.com
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}