watchlist

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

Что такое watchlist?

watchlist - это расширение Chrome, разработанное daemianmack, и его основная функция - "This Chrome extension lets you specify arbitrary terms, including regular expressions. When your terms appear on a webpage, they…".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения watchlist

Скачайте файлы расширений watchlist в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название watchlist watchlist
ID menehddibpdfhbfgfmhkddgbajijoole
Официальный URL https://chromewebstore.google.com/detail/watchlist/menehddibpdfhbfgfmhkddgbajijoole
Описание This Chrome extension lets you specify arbitrary terms, including regular expressions. When your terms appear on a webpage, they…
Размер файла 1.4 MB
Количество установок 1,091
Текущая Версия 0.6.2
Последнее Обновление 2020-09-20
Дата публикации 2020-06-14
Рейтинг 1.00/5 Всего 1 оценок
Разработчик daemianmack
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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
}