Full Width Github
Always use full-width layout on Github. Great for reading and presenting code. This extension is not affiliated with Github.
Was ist Full Width Github?
Full Width Github ist eine Chrome-Erweiterung, die von Jared Tong entwickelt wurde, und ihr Hauptmerkmal ist "Always use full-width layout on Github. Great for reading and presenting code. This extension is not affiliated with Github.".
Erweiterungsscreenshots
Full Width Github-Erweiterungs-CRX-Datei herunterladen
Laden Sie Full Width Github-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
Always use full-width layout on Github. Great for reading and presenting code. This extension is not affiliated with Github. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | fpmeepocimocneobfkndponblfpecdkj |
| Offizielle URL | https://chromewebstore.google.com/detail/full-width-github/fpmeepocimocneobfkndponblfpecdkj |
| Beschreibung | Always use full-width layout on Github. Great for reading and presenting code. This extension is not affiliated with Github. |
| Dateigröße | 316 KB |
| Installationsanzahl | 23 |
| Aktuelle Version | 0.0.1 |
| Letztes Update | 2017-03-04 |
| Veröffentlichungsdatum | 2017-03-04 |
| Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
| Entwickler | Jared Tong |
| Zahlungsart | free |
| Hilfeseite URL | https://github.com/tongrhj/full_width_github/issues |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Full Width Github",
"version": "0.0.1",
"description": "Always use full-width layout on Github. Great for reading and presenting code. This extension is not affiliated with Github.",
"browser_action": {
"default_icon": "github48.png",
"default_title": "Wider Github"
},
"icons": {
"16": "github16.png",
"48": "github48.png",
"128": "github128.png"
},
"content_scripts": [
{
"js": [
"content.js"
],
"matches": [
"https:\/\/github.com\/*",
"https:\/\/*.github.com\/*"
]
}
]
} | |