Notify by Script
Extension for setting notifications that prepared by scripts.
What is Notify by Script?
Notify by Script is a Chrome extension developed by expercise Labs, and its main feature is "Extension for setting notifications that prepared by scripts.".
Extension Screenshots
Download Notify by Script Extension CRX File
Download Notify by Script extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Notify by Script |
ID | idgiodaooapkmmipoahlcmggofokcilg |
Official URL | https://chromewebstore.google.com/detail/notify-by-script/idgiodaooapkmmipoahlcmggofokcilg |
Description | Extension for setting notifications that prepared by scripts. |
File Size | 54.84 KB |
Installation Count | 32 |
Current Version | 1.0.5 |
Last Updated | 2022-02-21 |
Publish Date | 2017-01-17 |
Rating | 5.00/5 Total 6 Ratings |
Developer | expercise Labs |
[email protected] | |
Payment Type | free |
Extension Website | http://expercise.com |
Help Page URL | https://github.com/ufuk/notify-by-script |
Supported Languages | 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 } } |