GitHub with a cape
Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like!
Was ist GitHub with a cape?
GitHub with a cape ist eine Chrome-Erweiterung, die von NicoSantangelo entwickelt wurde, und ihr Hauptmerkmal ist "Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like!".
Erweiterungsscreenshots
GitHub with a cape-Erweiterungs-CRX-Datei herunterladen
Laden Sie GitHub with a cape-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ohkgmmldhbadfleajjafdeahmakbbcpi |
| Offizielle URL | https://chromewebstore.google.com/detail/github-with-a-cape/ohkgmmldhbadfleajjafdeahmakbbcpi |
| Beschreibung | Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like! |
| Dateigröße | 31.47 KB |
| Installationsanzahl | 22 |
| Aktuelle Version | 1.4.4 |
| Letztes Update | 2017-02-12 |
| Veröffentlichungsdatum | 2017-02-11 |
| Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
| Entwickler | NicoSantangelo |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github-with-a-cape.nicosantangelo.com/ |
| Hilfeseite URL | https://github.com/NicoSantangelo/github-with-a-cape/issues |
| URL der Datenschutzrichtlinien-Seite | https://github.com/nicosantangelo/portfolio/blob/master/PRIVACY.md |
| Unterstützte Sprachen | 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"
]
} | |