google-search-highlight

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

Vad är google-search-highlight?

google-search-highlight är en Chrome-tillägg utvecklad av morix1500, och dess huvudfunktion är "This is an extension that highlights Google's search word.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner google-search-highlight-förlängningens CRX-fil

Ladda ner google-search-highlight-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn google-search-highlight google-search-highlight
ID flaaojfnmmijincblkoigagflgogiego
Officiell webbadress https://chrome.google.com/webstore/detail/google-search-highlight/flaaojfnmmijincblkoigagflgogiego
Beskrivning This is an extension that highlights Google's search word.
Filstorlek 42.2 KB
Antal Installationer 257
Aktuell Version 0.3
Senast Uppdaterad 2018-09-17
Publiceringsdatum 2018-09-17
Betyg 4.00/5 Totalt 3 Betyg
Utvecklare morix1500
Betalningssätt free
Stödda Språk 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"
    ]
}