Notify by Script
Extension for setting notifications that prepared by scripts.
Apa itu Notify by Script?
Notify by Script adalah ekstensi Chrome yang dikembangkan oleh expercise Labs, dan fitur utamanya adalah "Extension for setting notifications that prepared by scripts.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Notify by Script
Unduh file ekstensi Notify by Script dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Notify by Script |
ID | idgiodaooapkmmipoahlcmggofokcilg |
URL Resmi | https://chromewebstore.google.com/detail/notify-by-script/idgiodaooapkmmipoahlcmggofokcilg |
Deskripsi | Extension for setting notifications that prepared by scripts. |
Ukuran File | 54.84 KB |
Jumlah Instalasi | 32 |
Versi Saat Ini | 1.0.5 |
Terakhir Diperbarui | 2022-02-21 |
Tanggal Publikasi | 2017-01-17 |
Penilaian | 5.00/5 Total 6 Penilaian |
Pengembang | expercise Labs |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | http://expercise.com |
URL Halaman Bantuan | https://github.com/ufuk/notify-by-script |
Bahasa yang Didukung | 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 } } |