Release Notifier for Github
Unofficial "polyfill" for watching Github releases.
Release Notifier for Githubคืออะไร?
Release Notifier for Github เป็นส่วนขยายของ Chrome ที่พัฒนาโดย CRIMX และคุณลักษณะหลักของมันคือ "Unofficial "polyfill" for watching Github releases."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Release Notifier for Github
ดาวน์โหลดไฟล์ส่วนขยาย Release Notifier for Github ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
It checks Github releases every 15 minutes and notifies releases by browser notification. Fast & light-weight: It is loaded and run only when needed. It uses Github api and takes advantage of 403 cache. You can also switch to atom feeds for unsupported repos. Source https://github.com/crimx/ext-github-release-notifier
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Release Notifier for Github |
ID | gjhmlndokehcbkaockjlgeofgkiaiflg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/release-notifier-for-gith/gjhmlndokehcbkaockjlgeofgkiaiflg |
คำอธิบาย | Unofficial "polyfill" for watching Github releases. |
ขนาดไฟล์ | 175 KB |
จำนวนการติดตั้ง | 42 |
เวอร์ชันปัจจุบัน | 0.2.6 |
อัปเดตครั้งล่าสุด | 2020-02-06 |
วันที่เผยแพร่ | 2020-02-06 |
คะแนน | 5.00/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | CRIMX |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/crimx/ext-github-release-notifier |
URL หน้าช่วยเหลือ | https://github.com/crimx/ext-github-release-notifier/issues |
URL หน้านโยบายความเป็นส่วนตัว | https://www.crimx.com/privacy-policy |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Release Notifier for Github", "short_name": "Release Notifier", "description": "Unofficial \"polyfill\" for watching Github releases.", "version": "0.2.6", "icons": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.github.com\/*" ], "js": [ "content.js" ] } ], "browser_action": { "default_icon": { "16": "icon-16.png", "32": "icon-32.png", "64": "icon-64.png" }, "default_popup": "popup.html", "default_title": "Everything is up to date." }, "permissions": [ "https:\/\/*.github.com\/*", "alarms", "identity", "storage", "notifications" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "minimum_chrome_version": "55", "background": { "scripts": [ "background.js" ], "persistent": false } } |