GitHub with a cape
Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like!
Co je GitHub with a cape?
GitHub with a cape je rozšíření Chrome vyvinuté NicoSantangelo, a jeho hlavní funkcí je „Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like!“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření GitHub with a cape
Stáhněte si soubory rozšíření GitHub with a cape ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | GitHub with a cape |
ID | ohkgmmldhbadfleajjafdeahmakbbcpi |
Oficiální URL | https://chromewebstore.google.com/detail/github-with-a-cape/ohkgmmldhbadfleajjafdeahmakbbcpi |
Popis | Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like! |
Velikost souboru | 31.47 KB |
Počet instalací | 22 |
Aktuální Verze | 1.4.4 |
Poslední Aktualizace | 2017-02-12 |
Datum Vydání | 2017-02-11 |
Hodnocení | 5.00/5 Celkem 3 Hodnocení |
Vývojář | NicoSantangelo |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github-with-a-cape.nicosantangelo.com/ |
URL Stránky Nápovědy | https://github.com/NicoSantangelo/github-with-a-cape/issues |
URL Stránky Zásad Ochrany Soukromí | https://github.com/nicosantangelo/portfolio/blob/master/PRIVACY.md |
Podporované Jazyky | 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" ] } |