Chrome URL Notification
Notify user when the URL matches the registered patterns.
Что такое Chrome URL Notification?
Chrome URL Notification - это расширение Chrome, разработанное smori, и его основная функция - "Notify user when the URL matches the registered patterns.".
Снимки экрана расширения
Скачать файл CRX расширения Chrome URL Notification
Скачайте файлы расширений Chrome URL Notification в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
                        Usage
Register URL pattern and message ( and some settings ).
You can use '*' like https://*.example.com/
- Message will be shown when browsing URL matches with registered pattern.
- Display position of message: top / bottom / top left / top right / bottom left / bottom right                     Основная информация о расширении
| Название |   |  
| ID | gdnmbdajkmabbkejinjnjdobmkbfhonn | 
| Официальный URL | https://chromewebstore.google.com/detail/chrome-url-notification/gdnmbdajkmabbkejinjnjdobmkbfhonn | 
| Описание | Notify user when the URL matches the registered patterns. | 
| Размер файла | 380 KB | 
| Количество установок | 261 | 
| Текущая Версия | 7.0.0 | 
| Последнее Обновление | 2022-05-18 | 
| Дата публикации | 2020-05-12 | 
| Рейтинг | 4.00/5 Всего 1 оценок | 
| Разработчик | smori | 
| Электронная почта | [email protected] | 
| Тип оплаты | free | 
| Официальный сайт расширения | https://github.com/smori1983/chrome-url-notification | 
| Поддерживаемые языки | en,ja | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Chrome URL Notification",
    "description": "Notify user when the URL matches the registered patterns.",
    "version": "7.0.0",
    "icons": {
        "16": "image\/icon_16.png",
        "48": "image\/icon_48.png",
        "128": "image\/icon_128.png"
    },
    "default_locale": "en",
    "permissions": [
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "action": {
        "default_icon": "image\/icon_16.png",
        "default_title": "Chrome URL Notification",
        "default_popup": "html\/popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "html\/options.html"
}  |  |