Notify by Script
Extension for setting notifications that prepared by scripts.
Hvad er Notify by Script?
Notify by Script er en Chrome-udvidelse udviklet af expercise Labs, og dens hovedfunktion er "Extension for setting notifications that prepared by scripts.".
Udvidelsesskærmbilleder
Download Notify by Script-udvidelses-CRX-fil
Download Notify by Script-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | Notify by Script |
ID | idgiodaooapkmmipoahlcmggofokcilg |
Officiel URL | https://chromewebstore.google.com/detail/notify-by-script/idgiodaooapkmmipoahlcmggofokcilg |
Beskrivelse | Extension for setting notifications that prepared by scripts. |
Filstørrelse | 54.84 KB |
Antal Installationer | 32 |
Nuværende Version | 1.0.5 |
Senest Opdateret | 2022-02-21 |
Udgivelsesdato | 2017-01-17 |
Bedømmelse | 5.00/5 Samlet 6 Bedømmelser |
Udvikler | expercise Labs |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | http://expercise.com |
Hjælpeside-URL | https://github.com/ufuk/notify-by-script |
Understøttede Sprog | 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 } } |