What's New on GitHub
See what's new and what's not in your GitHub dashboard's feeds and in your organizations' feeds.
What's New on GitHubとは何ですか?
What's New on GitHubはMickaël Allonneauによって開発されたChromeの拡張機能で、その主な機能は「See what's new and what's not in your GitHub dashboard's feeds and in your organizations' feeds.」です。
拡張機能のスクリーンショット
What's New on GitHub拡張機能のCRXファイルをダウンロード
What's New on GitHub拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension helps you see easily what happened on GitHub since your last visit. See the screenshot to see it in action! ⭐ Don't forget to leave a rating if you find this extension useful! (Also available on Firefox : https://addons.mozilla.org/en-US/firefox/addon/whats-new-github/)
拡張機能の基本情報
名前 | What's New on GitHub |
ID | ldleapnlgbkpkabhbkkeangmnfpikahe |
公式URL | https://chromewebstore.google.com/detail/whats-new-on-github/ldleapnlgbkpkabhbkkeangmnfpikahe |
説明 | See what's new and what's not in your GitHub dashboard's feeds and in your organizations' feeds. |
ファイルサイズ | 9.8 KB |
インストール数 | 175 |
現在のバージョン | 3.0.1 |
最終更新日 | 2023-02-28 |
公開日 | 2020-05-18 |
開発者 | Mickaël Allonneau |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/flawyte/whats-new-github |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "What's New on GitHub", "version": "3.0.1", "description": "See what's new and what's not in your GitHub dashboard's feeds and in your organizations' feeds.", "icons": { "48": "icon\/48.png", "128": "icon\/128.png" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/", "https:\/\/github.com\/dashboard", "https:\/\/github.com\/orgs\/*\/dashboard" ], "js": [ "index.js" ], "run_at": "document_end" } ], "permissions": [ "storage" ] } |