Chrome URL Notification

Notify user when the URL matches the registered patterns.

Apa itu Chrome URL Notification?

Chrome URL Notification adalah ekstensi Chrome yang dikembangkan oleh smori, dan fitur utamanya adalah "Notify user when the URL matches the registered patterns.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Chrome URL Notification

Unduh file ekstensi Chrome URL Notification dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Chrome URL Notification Chrome URL Notification
ID gdnmbdajkmabbkejinjnjdobmkbfhonn
URL Resmi https://chromewebstore.google.com/detail/chrome-url-notification/gdnmbdajkmabbkejinjnjdobmkbfhonn
Deskripsi Notify user when the URL matches the registered patterns.
Ukuran File 380 KB
Jumlah Instalasi 261
Versi Saat Ini 7.0.0
Terakhir Diperbarui 2022-05-18
Tanggal Publikasi 2020-05-12
Penilaian 4.00/5 Total 1 Penilaian
Pengembang smori
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/smori1983/chrome-url-notification
Bahasa yang Didukung 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"
}