Notify by Script
Extension for setting notifications that prepared by scripts.
Was ist Notify by Script?
Notify by Script ist eine Chrome-Erweiterung, die von expercise Labs entwickelt wurde, und ihr Hauptmerkmal ist "Extension for setting notifications that prepared by scripts.".
Erweiterungsscreenshots
Notify by Script-Erweiterungs-CRX-Datei herunterladen
Laden Sie Notify by Script-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
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | idgiodaooapkmmipoahlcmggofokcilg |
| Offizielle URL | https://chromewebstore.google.com/detail/notify-by-script/idgiodaooapkmmipoahlcmggofokcilg |
| Beschreibung | Extension for setting notifications that prepared by scripts. |
| Dateigröße | 54.84 KB |
| Installationsanzahl | 32 |
| Aktuelle Version | 1.0.5 |
| Letztes Update | 2022-02-21 |
| Veröffentlichungsdatum | 2017-01-17 |
| Bewertung | 5.00/5 Insgesamt 6 Bewertungen |
| Entwickler | expercise Labs |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | http://expercise.com |
| Hilfeseite URL | https://github.com/ufuk/notify-by-script |
| Unterstützte Sprachen | 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
}
} | |