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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον NicoSantangelo, και η κύρια λειτουργία του είναι "Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like!".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης GitHub with a cape
Λήψη αρχείων επέκτασης 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"
]
} | |