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 |
官方網址 | 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 |
電子郵箱 | [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 } } |