Impression Counter

Count the total activity of selected tweets.

什么是Impression Counter?

Impression Counter是由http://slogansocial.com开发的Chrome扩展程序,该扩展的主要功能是“Count the total activity of selected tweets.”。

扩展截图

screenshot

下载Impression Counter扩展crx文件

下载Impression Counter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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!                    

扩展基本信息

名称 Impression Counter Impression Counter
ID okdfhnhmohlnbmhikficilhigmjlaofd
官方URL https://chrome.google.com/webstore/detail/impression-counter/okdfhnhmohlnbmhikficilhigmjlaofd
简介 Count the total activity of selected tweets.
文件大小 39.02 KB
安装次数 27
当前版本 1.4.1
更新时间 2018-01-29
上架时间 2018-01-29
评分 1.00/5 共1次评分
开发者 http://slogansocial.com
付费类型 free
支持的语言 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"
            ]
        }
    ]
}