Automatic Keywords Highlighter

Automatically highlights given keywords on any web page you visit.

Vad är Automatic Keywords Highlighter?

Automatic Keywords Highlighter är en Chrome-tillägg utvecklad av Matthias Path, och dess huvudfunktion är "Automatically highlights given keywords on any web page you visit.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Automatic Keywords Highlighter-förlängningens CRX-fil

Ladda ner Automatic Keywords Highlighter-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

                        Set a list of keywords and Automatic Keywords Highlighter will automatically highlight them on any web page you visit. The icon shows you how often a keyword was highlighted on the current page.

Instead of searching for the interesting bits of a web page, let Automatic Keywords Highlighter show them to you instantly. Simply type in a list of keywords and pick your favourite highlighter color.

Stop searching! Use Automatic Keywords Highlighter!                    

Grundläggande Information om Tillägg

Namn Automatic Keywords Highlighter Automatic Keywords Highlighter
ID gcpknobcboilhnacklgmaamlcnblneoi
Officiell webbadress https://chrome.google.com/webstore/detail/automatic-keywords-highli/gcpknobcboilhnacklgmaamlcnblneoi
Beskrivning Automatically highlights given keywords on any web page you visit.
Filstorlek 46.37 KB
Antal Installationer 5,000
Aktuell Version 0.1.0
Senast Uppdaterad 2015-04-15
Publiceringsdatum 2015-04-15
Betyg 3.36/5 Totalt 36 Betyg
Utvecklare Matthias Path
Betalningssätt free
Tilläggswebbplats https://github.com/wrzlbrmft/chrome-keywords-highlighter/blob/master/README.md
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Automatic Keywords Highlighter",
    "short_name": "Automatic Keywords Highlighter",
    "description": "Automatically highlights given keywords on any web page you visit.",
    "version": "0.1.0",
    "icons": {
        "16": "icons\/icon16.png",
        "24": "icons\/icon24.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png",
        "72": "icons\/icon72.png",
        "96": "icons\/icon96.png",
        "128": "icons\/icon128.png",
        "256": "icons\/icon256.png"
    },
    "homepage_url": "https:\/\/github.com\/wrzlbrmft\/chrome-keywords-highlighter\/blob\/master\/README.md",
    "permissions": [
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "24": "icons\/icon24.png",
            "32": "icons\/icon32.png",
            "48": "icons\/icon48.png",
            "64": "icons\/icon64.png",
            "72": "icons\/icon72.png",
            "96": "icons\/icon96.png",
            "128": "icons\/icon128.png",
            "256": "icons\/icon256.png"
        },
        "default_title": "Automatic Keywords Highlighter",
        "default_popup": "popup.html"
    },
    "options_page": "options.html"
}