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 扩展基本信息
| 名称 | |
| 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 |
| 电子邮箱 | [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"
]
} | |