watchlist

This Chrome extension lets you specify arbitrary terms, including regular expressions. When your terms appear on a webpage, they…

Vad är watchlist?

watchlist är en Chrome-tillägg utvecklad av daemianmack, och dess huvudfunktion är "This Chrome extension lets you specify arbitrary terms, including regular expressions. When your terms appear on a webpage, they…".

Tilläggsskärmbilder

screenshot

Ladda ner watchlist-förlängningens CRX-fil

Ladda ner watchlist-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 Chrome extension lets you specify arbitrary terms, including regular expressions.

When your terms appear on a webpage, they will be highlighted. 

A summary of them will appear in a statusbar, and clicking the terms in the statusbar will scroll the page to the place that term appears.

It uses Chrome's sync API for Storage so your options are persistent across all your devices.                    

Grundläggande Information om Tillägg

Namn watchlist watchlist
ID menehddibpdfhbfgfmhkddgbajijoole
Officiell webbadress https://chromewebstore.google.com/detail/watchlist/menehddibpdfhbfgfmhkddgbajijoole
Beskrivning This Chrome extension lets you specify arbitrary terms, including regular expressions. When your terms appear on a webpage, they…
Filstorlek 1.4 MB
Antal Installationer 1,091
Aktuell Version 0.6.2
Senast Uppdaterad 2020-09-20
Publiceringsdatum 2020-06-14
Betyg 1.00/5 Totalt 1 Betyg
Utvecklare daemianmack
E-post [email protected]
Betalningssätt free
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "watchlist",
    "version": "0.6.2",
    "web_accessible_resources": [
        "watchlist-16.png"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "watchlist.js"
            ],
            "css": [
                "matches.css"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true,
        "open_in_tab": true
    },
    "icons": {
        "16": "watchlist-16.png",
        "48": "watchlist-48.png",
        "128": "watchlist-128.png"
    },
    "permissions": [
        "storage"
    ],
    "manifest_version": 2
}