Notify by Script

Extension for setting notifications that prepared by scripts.

Cos'è Notify by Script?

Notify by Script è un'estensione di Chrome sviluppata da expercise Labs, e la sua funzione principale è "Extension for setting notifications that prepared by scripts.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Notify by Script

Scarica i file di estensione Notify by Script in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Notify by Script is here to allow you setting alarms with custom scripted notifications.

For example information, visit https://github.com/ufuk/notify-by-script#notify-by-script                    

Informazioni di Base sull'Estensione

Nome Notify by Script Notify by Script
ID idgiodaooapkmmipoahlcmggofokcilg
URL Ufficiale https://chromewebstore.google.com/detail/notify-by-script/idgiodaooapkmmipoahlcmggofokcilg
Descrizione Extension for setting notifications that prepared by scripts.
Dimensione del File 54.84 KB
Conteggio Installazioni 32
Versione Corrente 1.0.5
Ultimo Aggiornamento 2022-02-21
Data di Pubblicazione 2017-01-17
Valutazione 5.00/5 Totale 6 Valutazioni
Sviluppatore expercise Labs
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://expercise.com
URL della Pagina di Aiuto https://github.com/ufuk/notify-by-script
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Notify by Script",
    "description": "Extension for setting notifications that prepared by scripts.",
    "version": "1.0.5",
    "author": "Ufuk Uzun",
    "icons": {
        "128": "icon-128.png",
        "256": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "main.js",
            "jquery.min.js"
        ]
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "alarms",
        "notifications",
        "storage"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}