Release Notifier for Github
Unofficial "polyfill" for watching Github releases.
Release Notifier for Github क्या है?
Release Notifier for Github CRIMX द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Unofficial "polyfill" for watching Github releases."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Release Notifier for Github एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 } } |