Notify by Script
Extension for setting notifications that prepared by scripts.
Wat is Notify by Script?
Notify by Script is een Chrome-extensie ontwikkeld door expercise Labs, en de belangrijkste functie is "Extension for setting notifications that prepared by scripts.".
Extensie Screenshots
Download het CRX-bestand van de extensie Notify by Script
Download Notify by Script-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Notify by Script |
ID | idgiodaooapkmmipoahlcmggofokcilg |
Officiële URL | https://chromewebstore.google.com/detail/notify-by-script/idgiodaooapkmmipoahlcmggofokcilg |
Beschrijving | Extension for setting notifications that prepared by scripts. |
Bestandsgrootte | 54.84 KB |
Aantal Installaties | 32 |
Huidige Versie | 1.0.5 |
Laatst Bijgewerkt | 2022-02-21 |
Publicatiedatum | 2017-01-17 |
Beoordeling | 5.00/5 Totaal 6 Beoordelingen |
Ontwikkelaar | expercise Labs |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | http://expercise.com |
Help Pagina-URL | https://github.com/ufuk/notify-by-script |
Ondersteunde Talen | 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 } } |