GitHub with a cape
Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like!
¿Qué es GitHub with a cape?
GitHub with a cape es una extensión de Chrome desarrollada por NicoSantangelo, y su función principal es "Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like!".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión GitHub with a cape
Descarga archivos de extensión GitHub with a cape en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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 Información Básica de la Extensión
| Nombre | |
| ID | ohkgmmldhbadfleajjafdeahmakbbcpi |
| URL Oficial | https://chromewebstore.google.com/detail/github-with-a-cape/ohkgmmldhbadfleajjafdeahmakbbcpi |
| Descripción | Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like! |
| Tamaño del Archivo | 31.47 KB |
| Cantidad de Instalaciones | 22 |
| Versión Actual | 1.4.4 |
| Última Actualización | 2017-02-12 |
| Fecha de Publicación | 2017-02-11 |
| Calificación | 5.00/5 Total de 3 Calificaciones |
| Desarrollador | NicoSantangelo |
| Correo electrónico | [email protected] |
| Tipo de Pago | free |
| Sitio Web de la Extensión | https://github-with-a-cape.nicosantangelo.com/ |
| URL de la Página de Ayuda | https://github.com/NicoSantangelo/github-with-a-cape/issues |
| URL de la Página de Política de Privacidad | https://github.com/nicosantangelo/portfolio/blob/master/PRIVACY.md |
| Idiomas Soportados | 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"
]
} | |