Release Notifier for Github
Unofficial "polyfill" for watching Github releases.
Vad är Release Notifier for Github?
Release Notifier for Github är en Chrome-tillägg utvecklad av CRIMX, och dess huvudfunktion är "Unofficial "polyfill" for watching Github releases.".
Tilläggsskärmbilder
Ladda ner Release Notifier for Github-förlängningens CRX-fil
Ladda ner Release Notifier for Github-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | Release Notifier for Github |
ID | gjhmlndokehcbkaockjlgeofgkiaiflg |
Officiell webbadress | https://chromewebstore.google.com/detail/release-notifier-for-gith/gjhmlndokehcbkaockjlgeofgkiaiflg |
Beskrivning | Unofficial "polyfill" for watching Github releases. |
Filstorlek | 175 KB |
Antal Installationer | 42 |
Aktuell Version | 0.2.6 |
Senast Uppdaterad | 2020-02-06 |
Publiceringsdatum | 2020-02-06 |
Betyg | 5.00/5 Totalt 5 Betyg |
Utvecklare | CRIMX |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/crimx/ext-github-release-notifier |
Hjälpsida URL | https://github.com/crimx/ext-github-release-notifier/issues |
URL till Sekretesspolicy Sidan | https://www.crimx.com/privacy-policy |
Stödda Språk | 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 } } |