Release Notifier for Github
Unofficial "polyfill" for watching Github releases.
Release Notifier for Githubとは何ですか?
Release Notifier for GithubはCRIMXによって開発されたChromeの拡張機能で、その主な機能は「Unofficial "polyfill" for watching Github releases.」です。
拡張機能のスクリーンショット
Release Notifier for Github拡張機能のCRXファイルをダウンロード
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 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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
}
} | |