Chrome URL Notification

Notify user when the URL matches the registered patterns.

O que é Chrome URL Notification?

Chrome URL Notification é uma extensão do Chrome desenvolvida por smori, e sua principal característica é "Notify user when the URL matches the registered patterns.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Chrome URL Notification

Baixe arquivos de extensão Chrome URL Notification no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Chrome URL Notification Chrome URL Notification
ID gdnmbdajkmabbkejinjnjdobmkbfhonn
URL Oficial https://chromewebstore.google.com/detail/chrome-url-notification/gdnmbdajkmabbkejinjnjdobmkbfhonn
Descrição Notify user when the URL matches the registered patterns.
Tamanho do Arquivo 380 KB
Contagem de Instalações 261
Versão Atual 7.0.0
Última Atualização 2022-05-18
Data de Publicação 2020-05-12
Classificação 4.00/5 Total de 1 Avaliações
Desenvolvedor smori
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/smori1983/chrome-url-notification
Idiomas Suportados 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"
}