google-search-highlight

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

Co to jest google-search-highlight?

google-search-highlight to rozszerzenie Chrome opracowane przez morix1500, a jego główną funkcją jest „This is an extension that highlights Google's search word.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia google-search-highlight

Pobierz pliki rozszerzeń google-search-highlight w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa google-search-highlight google-search-highlight
ID flaaojfnmmijincblkoigagflgogiego
Oficjalny URL https://chrome.google.com/webstore/detail/google-search-highlight/flaaojfnmmijincblkoigagflgogiego
Opis This is an extension that highlights Google's search word.
Rozmiar pliku 42.2 KB
Liczba instalacji 257
Aktualna Wersja 0.3
Ostatnia Aktualizacja 2018-09-17
Data Publikacji 2018-09-17
Ocena 4.00/5 Łącznie 3 Oceny
Deweloper morix1500
Typ Płatności free
Obsługiwane Języki 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"
    ]
}