watchlist

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

Co je watchlist?

watchlist je rozšíření Chrome vyvinuté daemianmack, a jeho hlavní funkcí je „This Chrome extension lets you specify arbitrary terms, including regular expressions. When your terms appear on a webpage, they…“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření watchlist

Stáhněte si soubory rozšíření watchlist ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název watchlist watchlist
ID menehddibpdfhbfgfmhkddgbajijoole
Oficiální URL https://chromewebstore.google.com/detail/watchlist/menehddibpdfhbfgfmhkddgbajijoole
Popis This Chrome extension lets you specify arbitrary terms, including regular expressions. When your terms appear on a webpage, they…
Velikost souboru 1.4 MB
Počet instalací 1,091
Aktuální Verze 0.6.2
Poslední Aktualizace 2020-09-20
Datum Vydání 2020-06-14
Hodnocení 1.00/5 Celkem 1 Hodnocení
Vývojář daemianmack
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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
}