Github code folding
Add code folding functionality on github for code indented using 2 spaces
Was ist Github code folding?
Github code folding ist eine Chrome-Erweiterung, die von Ryan Harkins entwickelt wurde, und ihr Hauptmerkmal ist "Add code folding functionality on github for code indented using 2 spaces".
Erweiterungsscreenshots
Github code folding-Erweiterungs-CRX-Datei herunterladen
Laden Sie Github code folding-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
Grundlegende Informationen zur Erweiterung
| Name | |
| ID | iokmjnihlfnchffcmjihafillepmhogk |
| Offizielle URL | https://chromewebstore.google.com/detail/github-code-folding/iokmjnihlfnchffcmjihafillepmhogk |
| Beschreibung | Add code folding functionality on github for code indented using 2 spaces |
| Dateigröße | 14.7 KB |
| Installationsanzahl | 41 |
| Aktuelle Version | 0.0.1 |
| Letztes Update | 2015-05-23 |
| Veröffentlichungsdatum | 2015-05-23 |
| Bewertung | 3.00/5 Insgesamt 2 Bewertungen |
| Entwickler | Ryan Harkins |
| Zahlungsart | free |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Github code folding",
"version": "0.0.1",
"manifest_version": 2,
"description": "Add code folding functionality on github for code indented using 2 spaces",
"homepage_url": "http:\/\/github.com",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"default_locale": "en",
"permissions": [
"https:\/\/github.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*"
],
"css": [
"src\/inject\/inject.css"
],
"js": [
"src\/inject\/inject.js"
]
}
]
} | |