Highlight Keywords

Highlight keywords on webpage that you visited after searching for a keyword on a search engine.

Vad är Highlight Keywords?

Highlight Keywords är en Chrome-tillägg utvecklad av http://sites.google.com/site/extensionshub, och dess huvudfunktion är "Highlight keywords on webpage that you visited after searching for a keyword on a search engine.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Highlight Keywords-förlängningens CRX-fil

Ladda ner Highlight Keywords-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

                        Supported search engines are
✓ Google
✓ Yahoo
✓ Bing
✓ Yandex
✓ Baidu

How to On/Off the highlighter?
Click extension icon to on/off the highlighter.

How it works?

You search for a keyword on a search engine.
Then visit a webpage from returned results.
Keywords will be highlighted on that page.
To on/off the highlighter, just click extension icon.

What you will get with Highlight Keywords?
✓ A great highlighting extension.
✓ New tab page which includes links to popular sites.                    

Grundläggande Information om Tillägg

Namn Highlight Keywords Highlight Keywords
ID ifboknkcilomhlninjdnphlphadpcjli
Officiell webbadress https://chrome.google.com/webstore/detail/highlight-keywords/ifboknkcilomhlninjdnphlphadpcjli
Beskrivning Highlight keywords on webpage that you visited after searching for a keyword on a search engine.
Filstorlek 30.43 KB
Antal Installationer 355
Aktuell Version 1.0
Senast Uppdaterad 2017-12-20
Publiceringsdatum 2017-12-20
Betyg 3.43/5 Totalt 7 Betyg
Utvecklare http://sites.google.com/site/extensionshub
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan https://freepicturesolutions.com/privacy_policy.html
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Highlight Keywords",
    "default_locale": "en",
    "description": "Highlight keywords on webpage that you visited after searching for a keyword on a search engine.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "version": "1.0",
    "icons": {
        "128": "images\/icon.png"
    },
    "browser_action": {
        "default_icon": "images\/icon.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "images\/*.png",
        "style.css"
    ]
}