Google Keyword Highlighter

Highlights Google-matched words in colour

Что такое Google Keyword Highlighter?

Google Keyword Highlighter - это расширение Chrome, разработанное Old Pike Software, и его основная функция - "Highlights Google-matched words in colour".

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

screenshot
screenshot

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

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

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

                        This very simple extension allows the addition of a highlight colour to all the matched words Google finds in the excerpts shown in a search results page (which normally are displayed only in a rather discreet boldface). The highlight colour can be chosen on the extension's Options Page.                    

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

Название Google Keyword Highlighter Google Keyword Highlighter
ID aocmoogbdjejoimokamdoekglbibpnda
Официальный URL https://chromewebstore.google.com/detail/google-keyword-highlighte/aocmoogbdjejoimokamdoekglbibpnda
Описание Highlights Google-matched words in colour
Размер файла 46.83 KB
Количество установок 28
Текущая Версия 1.2
Последнее Обновление 2024-02-04
Дата публикации 2021-10-21
Разработчик Old Pike Software
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://oldpike.bxtrom.eu/privacy_policy.html
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Google Keyword Highlighter",
    "version": "1.2",
    "description": "Highlights Google-matched words in colour",
    "icons": {
        "32": "icon_32.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "options_page": "options.html",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "js": [
                "jquery.js",
                "content.js"
            ],
            "matches": [
                "https:\/\/*.google.com\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icon_128.png"
            ],
            "matches": [
                "https:\/\/*.google.com\/*"
            ]
        }
    ]
}