Google Counter

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

Google Counter là gì?

Google Counter là một tiện ích mở rộng Chrome được phát triển bởi Sindre Bøyum, và tính năng chính của nó là "Counts how many times a day the browser visits the Google search page".

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

Tải xuống các tệp mở rộng Google 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

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

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

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

Tên Google Counter Google Counter
ID ocfcmolkmckfebkikmlhfeabaicddeae
URL Chính Thức https://chromewebstore.google.com/detail/google-counter/ocfcmolkmckfebkikmlhfeabaicddeae
Mô tả Counts how many times a day the browser visits the Google search page
Kích Thước Tệp 11.33 KB
Số Lần Cài Đặt 266
Phiên Bản Hiện Tại 1.1.1
Cập Nhật Lần Cuối 2017-04-27
Ngày Phát Hành 2017-04-27
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Sindre Bøyum
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/boyum/google-counter/
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}