GitHub with a cape
Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like!
GitHub with a capeとは何ですか?
GitHub with a capeはNicoSantangeloによって開発されたChromeの拡張機能で、その主な機能は「Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like!」です。
拡張機能のスクリーンショット
GitHub with a cape拡張機能のCRXファイルをダウンロード
GitHub with a cape拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
All options can be turn on and off, it includes: - Notifications modal - Resizeable splitted diffs - Add collapsable diffs - Show All / Hide All buttons - Show the current diff name on the sticky header - Add collapsable commits - Toggle contributions by clicking the added/deleted stats - Show outdated diff comments by default - Highlights the outdated diff icon (the X) on PRs
拡張機能の基本情報
名前 | GitHub with a cape |
ID | ohkgmmldhbadfleajjafdeahmakbbcpi |
公式URL | https://chromewebstore.google.com/detail/github-with-a-cape/ohkgmmldhbadfleajjafdeahmakbbcpi |
説明 | Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like! |
ファイルサイズ | 31.47 KB |
インストール数 | 22 |
現在のバージョン | 1.4.4 |
最終更新日 | 2017-02-12 |
公開日 | 2017-02-11 |
評価 | 5.00/5 合計 3 レビュー |
開発者 | NicoSantangelo |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github-with-a-cape.nicosantangelo.com/ |
ヘルプページのURL | https://github.com/NicoSantangelo/github-with-a-cape/issues |
プライバシーポリシーページのURL | https://github.com/nicosantangelo/portfolio/blob/master/PRIVACY.md |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GitHub with a cape", "description": "Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like!", "short_name": "Github with a cape", "version": "1.4.4", "icons": { "18": "icons\/18.png", "19": "icons\/19.png", "38": "icons\/38.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.github.com\/*", "http:\/\/www.github.com\/*", "https:\/\/github.com\/*", "http:\/\/github.com\/*" ], "js": [ "configuration.js", "notifications.js", "content.js" ], "run_at": "document_idle" } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "options_page": "options\/options.html", "options_ui": { "page": "options\/options.html" }, "permissions": [ "storage" ], "web_accessible_resources": [ "notifications.html" ] } |