Notify by Script

Extension for setting notifications that prepared by scripts.

Vad är Notify by Script?

Notify by Script är en Chrome-tillägg utvecklad av expercise Labs, och dess huvudfunktion är "Extension for setting notifications that prepared by scripts.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Notify by Script-förlängningens CRX-fil

Ladda ner Notify by Script-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Notify by Script Notify by Script
ID idgiodaooapkmmipoahlcmggofokcilg
Officiell webbadress https://chromewebstore.google.com/detail/notify-by-script/idgiodaooapkmmipoahlcmggofokcilg
Beskrivning Extension for setting notifications that prepared by scripts.
Filstorlek 54.84 KB
Antal Installationer 32
Aktuell Version 1.0.5
Senast Uppdaterad 2022-02-21
Publiceringsdatum 2017-01-17
Betyg 5.00/5 Totalt 6 Betyg
Utvecklare expercise Labs
E-post [email protected]
Betalningssätt free
Tilläggswebbplats http://expercise.com
Hjälpsida URL https://github.com/ufuk/notify-by-script
Stödda Språk 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
    }
}