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 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"
            ]
        }
    ]
}