Notify by Script
Extension for setting notifications that prepared by scripts.
Notify by Scriptคืออะไร?
Notify by Script เป็นส่วนขยายของ Chrome ที่พัฒนาโดย expercise Labs และคุณลักษณะหลักของมันคือ "Extension for setting notifications that prepared by scripts."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Notify by Script
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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 } } |