Notify by Script
Extension for setting notifications that prepared by scripts.
Notify by Scriptとは何ですか?
Notify by Scriptはexpercise Labsによって開発されたChromeの拡張機能で、その主な機能は「Extension for setting notifications that prepared by scripts.」です。
拡張機能のスクリーンショット
Notify by Script拡張機能のCRXファイルをダウンロード
Notify by Script拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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
拡張機能の基本情報
名前 | Notify by Script |
ID | idgiodaooapkmmipoahlcmggofokcilg |
公式URL | https://chromewebstore.google.com/detail/notify-by-script/idgiodaooapkmmipoahlcmggofokcilg |
説明 | Extension for setting notifications that prepared by scripts. |
ファイルサイズ | 54.84 KB |
インストール数 | 32 |
現在のバージョン | 1.0.5 |
最終更新日 | 2022-02-21 |
公開日 | 2017-01-17 |
評価 | 5.00/5 合計 6 レビュー |
開発者 | expercise Labs |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | http://expercise.com |
ヘルプページのURL | https://github.com/ufuk/notify-by-script |
対応言語 | 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 } } |