Highlight Search Keywords

Highlight the keywords that you searched in google

Что такое Highlight Search Keywords?

Highlight Search Keywords - это расширение Chrome, разработанное Desheng Li, и его основная функция - "Highlight the keywords that you searched in google".

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

screenshot
screenshot

Скачать файл CRX расширения Highlight Search Keywords

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

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

                        Since the new policy of Chrome Extension, to enable the extension again. Please click the icon -> This can read an change the site data -> On all site (recommended) or the site you are currently on.
 
An extension that highlight the keywords that you searched on Google.
Press F5 to remove the highlights.                    

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

Название Highlight Search Keywords Highlight Search Keywords
ID nflhamjkngakbdnihackfkjoabknmooi
Официальный URL https://chromewebstore.google.com/detail/highlight-search-keywords/nflhamjkngakbdnihackfkjoabknmooi
Описание Highlight the keywords that you searched in google
Размер файла 145 KB
Количество установок 5,605
Текущая Версия 0.4
Последнее Обновление 2019-08-21
Дата публикации 2019-08-21
Рейтинг 3.21/5 Всего 33 оценок
Разработчик Desheng Li
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Highlight Search Keywords",
    "description": "Highlight the keywords that you searched in google",
    "version": "0.4",
    "permissions": [
        "storage"
    ],
    "manifest_version": 2,
    "icons": {
        "128": "icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/*",
                "http:\/\/www.google.com\/*"
            ],
            "js": [
                "catchkeywords.js"
            ],
            "run_at": "document_end"
        },
        {
            "exclude_matches": [
                "https:\/\/www.google.com\/*",
                "http:\/\/www.google.com\/*"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "highlightkeywords.js"
            ],
            "run_at": "document_end"
        }
    ]
}