watchlist

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

Co to jest watchlist?

watchlist to rozszerzenie Chrome opracowane przez daemianmack, a jego główną funkcją jest „This Chrome extension lets you specify arbitrary terms, including regular expressions. When your terms appear on a webpage, they…”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia watchlist

Pobierz pliki rozszerzeń watchlist w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa watchlist watchlist
ID menehddibpdfhbfgfmhkddgbajijoole
Oficjalny URL https://chromewebstore.google.com/detail/watchlist/menehddibpdfhbfgfmhkddgbajijoole
Opis This Chrome extension lets you specify arbitrary terms, including regular expressions. When your terms appear on a webpage, they…
Rozmiar pliku 1.4 MB
Liczba instalacji 1,091
Aktualna Wersja 0.6.2
Ostatnia Aktualizacja 2020-09-20
Data Publikacji 2020-06-14
Ocena 1.00/5 Łącznie 1 Oceny
Deweloper daemianmack
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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
}