Google Counter

Counts how many times a day the browser visits the Google search page

什么是Google Counter?

Google Counter是由Sindre Bøyum开发的Chrome扩展程序,该扩展的主要功能是“Counts how many times a day the browser visits the Google search page”。

下载Google Counter扩展crx文件

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

扩展使用说明

                        Chrome Extension that counts how many times a day the browser Googles.

Check out the code on GitHub: https://github.com/boyum/google-counter/                    

扩展基本信息

名称 Google Counter Google Counter
ID ocfcmolkmckfebkikmlhfeabaicddeae
官方URL https://chromewebstore.google.com/detail/google-counter/ocfcmolkmckfebkikmlhfeabaicddeae
简介 Counts how many times a day the browser visits the Google search page
文件大小 11.33 KB
安装次数 266
当前版本 1.1.1
更新时间 2017-04-27
上架时间 2017-04-27
评分 5.00/5 共1次评分
开发者 Sindre Bøyum
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/boyum/google-counter/
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Counter",
    "description": "Counts how many times a day the browser visits the Google search page",
    "version": "1.1.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        ""
    ],
    "background": {
        "scripts": [
            "eventpage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "include_globs": [
                "*:\/\/www.google.*\/*"
            ],
            "js": [
                "counter.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ]
}