Calmoon for Garoon
Make you free from sending/receiving notifications on Garoon https://garoon.cybozu.co.jp/
Calmoon for Garoonคืออะไร?
Calmoon for Garoon เป็นส่วนขยายของ Chrome ที่พัฒนาโดย tasshi และคุณลักษณะหลักของมันคือ "Make you free from sending/receiving notifications on Garoon https://garoon.cybozu.co.jp/"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Calmoon for Garoon
ดาวน์โหลดไฟล์ส่วนขยาย Calmoon for Garoon ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension make you free from sending/receiving notifications on Garoon🤫 - Disable "Notify this update" when you join/leave event on Garoon - Auto-read uninformative notifications More details: https://github.com/mshrtsr/browser-extension-calmoon This OSS is my own personal work and does not have any relationship with Cybozu Inc. or any other organization which I belong to.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Calmoon for Garoon |
ID | adpfpbogonofdljjmipfpheknmadjdck |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/calmoon-for-garoon/adpfpbogonofdljjmipfpheknmadjdck |
คำอธิบาย | Make you free from sending/receiving notifications on Garoon https://garoon.cybozu.co.jp/ |
ขนาดไฟล์ | 260 KB |
จำนวนการติดตั้ง | 282 |
เวอร์ชันปัจจุบัน | 1.3.2 |
อัปเดตครั้งล่าสุด | 2022-10-09 |
วันที่เผยแพร่ | 2020-06-12 |
ผู้พัฒนา | tasshi |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/mshrtsr/browser-extension-calmoon |
URL หน้าช่วยเหลือ | https://github.com/mshrtsr/browser-extension-calmoon/issues |
ภาษาที่รองรับ | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extensionName__", "version": "1.3.2", "short_name": "__MSG_extensionShortName__", "description": "__MSG_extensionDescription__", "default_locale": "en", "icons": { "16": "icons\/icon-16.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.cybozu.com\/g\/schedule\/participate*", "https:\/\/*.cybozu.com\/g\/schedule\/leave*", "https:\/\/*.cybozu-dev.com\/g\/schedule\/participate*", "https:\/\/*.cybozu-dev.com\/g\/schedule\/leave*", "https:\/\/*.kintone.com\/g\/schedule\/participate*", "https:\/\/*.kintone.com\/g\/schedule\/leave*", "https:\/\/*.kintone-dev.com\/g\/schedule\/participate*", "https:\/\/*.kintone-dev.com\/g\/schedule\/leave*", "https:\/\/*.cybozu.cn\/g\/schedule\/participate*", "https:\/\/*.cybozu.cn\/g\/schedule\/leave*", "https:\/\/*.cybozu-dev.cn\/g\/schedule\/participate*", "https:\/\/*.cybozu-dev.cn\/g\/schedule\/leave*" ], "js": [ "content-scripts\/prevent-send-notification.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/*.cybozu.com\/*", "https:\/\/*.cybozu-dev.com\/*", "https:\/\/*.kintone.com\/*", "https:\/\/*.kintone-dev.com\/*", "https:\/\/*.cybozu.cn\/*", "https:\/\/*.cybozu-dev.cn\/*" ], "js": [ "content-scripts\/auto-read-notifications.js" ], "run_at": "document_end" } ], "options_ui": { "page": "settings\/options.html", "open_in_tab": false }, "permissions": [ "storage" ] } |