google-search-highlight

This is an extension that highlights Google's search word.

Что такое google-search-highlight?

google-search-highlight - это расширение Chrome, разработанное morix1500, и его основная функция - "This is an extension that highlights Google's search word.".

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

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения google-search-highlight

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

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

                        This extension highlights words searched by Google on other pages.
It corresponds to the following functions.
・Change color of highlight
・Exact match search
・Disable highlight

The target Google domain is as follows.
・www.google.com
・www.google.co.jp                    

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

Название google-search-highlight google-search-highlight
ID flaaojfnmmijincblkoigagflgogiego
Официальный URL https://chrome.google.com/webstore/detail/google-search-highlight/flaaojfnmmijincblkoigagflgogiego
Описание This is an extension that highlights Google's search word.
Размер файла 42.2 KB
Количество установок 257
Текущая Версия 0.3
Последнее Обновление 2018-09-17
Дата публикации 2018-09-17
Рейтинг 4.00/5 Всего 3 оценок
Разработчик morix1500
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "google-search-highlight",
    "description": "This is an extension that highlights Google's search word.",
    "version": "0.3",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "jquery.highlight-5.js",
                "content_script.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "img\/icon-16x16.png",
        "48": "img\/icon-48x48.png",
        "128": "img\/icon-128x128.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ]
}