Notify by Script
Extension for setting notifications that prepared by scripts.
Notify by Script là gì?
Notify by Script là một tiện ích mở rộng Chrome được phát triển bởi expercise Labs, và tính năng chính của nó là "Extension for setting notifications that prepared by scripts.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Notify by Script
Tải xuống các tệp mở rộng Notify by Script dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Notify by Script |
ID | idgiodaooapkmmipoahlcmggofokcilg |
URL Chính Thức | https://chromewebstore.google.com/detail/notify-by-script/idgiodaooapkmmipoahlcmggofokcilg |
Mô tả | Extension for setting notifications that prepared by scripts. |
Kích Thước Tệp | 54.84 KB |
Số Lần Cài Đặt | 32 |
Phiên Bản Hiện Tại | 1.0.5 |
Cập Nhật Lần Cuối | 2022-02-21 |
Ngày Phát Hành | 2017-01-17 |
Đánh Giá | 5.00/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | expercise Labs |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://expercise.com |
URL Trang Trợ Giúp | https://github.com/ufuk/notify-by-script |
Ngôn Ngữ Được Hỗ Trợ | 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 } } |