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