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 |
官方網址 | 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 |
電子郵箱 | [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" ] } |