Chrome URL Notification

Notify user when the URL matches the registered patterns.

Was ist Chrome URL Notification?

Chrome URL Notification ist eine Chrome-Erweiterung, die von smori entwickelt wurde, und ihr Hauptmerkmal ist "Notify user when the URL matches the registered patterns.".

Erweiterungsscreenshots

screenshot
screenshot

Chrome URL Notification-Erweiterungs-CRX-Datei herunterladen

Laden Sie Chrome URL Notification-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Chrome URL Notification Chrome URL Notification
ID gdnmbdajkmabbkejinjnjdobmkbfhonn
Offizielle URL https://chromewebstore.google.com/detail/chrome-url-notification/gdnmbdajkmabbkejinjnjdobmkbfhonn
Beschreibung Notify user when the URL matches the registered patterns.
Dateigröße 380 KB
Installationsanzahl 261
Aktuelle Version 7.0.0
Letztes Update 2022-05-18
Veröffentlichungsdatum 2020-05-12
Bewertung 4.00/5 Insgesamt 1 Bewertungen
Entwickler smori
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/smori1983/chrome-url-notification
Unterstützte Sprachen 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"
}