Google Result Counter

Automatically counts your Google search results and displays the number of results in the title of the result.

Что такое Google Result Counter?

Google Result Counter - это расширение Chrome, разработанное Paul Lukic, и его основная функция - "Automatically counts your Google search results and displays the number of results in the title of the result.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Google Result Counter

Скачайте файлы расширений Google Result Counter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Do not forget to enable counter upon installation!

Update 1.0.4
 - Fixed counting header for images.
 - Fixed extension firing on wordpress.                    

Основная информация о расширении

Название Google Result Counter Google Result Counter
ID oijjnonbajbomjimdmfchfjadndnhfgp
Официальный URL https://chromewebstore.google.com/detail/google-result-counter/oijjnonbajbomjimdmfchfjadndnhfgp
Описание Automatically counts your Google search results and displays the number of results in the title of the result.
Размер файла 117 KB
Количество установок 646
Текущая Версия 1.0.4
Последнее Обновление 2023-08-01
Дата публикации 2023-07-14
Рейтинг 4.33/5 Всего 6 оценок
Разработчик Paul Lukic
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/paullukic/google-search-counter
URL страницы помощи https://www.linkedin.com/in/paul-lukic/
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Google Result Counter",
    "version": "1.0.4",
    "description": "Automatically counts your Google search results and displays the number of results in the title of the result.",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/google.com\/*"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}