Google Counter

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

Google Counterคืออะไร?

Google Counter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sindre Bøyum และคุณลักษณะหลักของมันคือ "Counts how many times a day the browser visits the Google search page"

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Counter

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}