Full Width Github
Always use full-width layout on Github. Great for reading and presenting code. This extension is not affiliated with Github.
Vad är Full Width Github?
Full Width Github är en Chrome-tillägg utvecklad av Jared Tong, och dess huvudfunktion är "Always use full-width layout on Github. Great for reading and presenting code. This extension is not affiliated with Github.".
Tilläggsskärmbilder
Ladda ner Full Width Github-förlängningens CRX-fil
Ladda ner Full Width Github-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Always use full-width layout on Github. Great for reading and presenting code. This extension is not affiliated with Github. Grundläggande Information om Tillägg
| Namn | |
| ID | fpmeepocimocneobfkndponblfpecdkj |
| Officiell webbadress | https://chromewebstore.google.com/detail/full-width-github/fpmeepocimocneobfkndponblfpecdkj |
| Beskrivning | Always use full-width layout on Github. Great for reading and presenting code. This extension is not affiliated with Github. |
| Filstorlek | 316 KB |
| Antal Installationer | 23 |
| Aktuell Version | 0.0.1 |
| Senast Uppdaterad | 2017-03-04 |
| Publiceringsdatum | 2017-03-04 |
| Betyg | 5.00/5 Totalt 2 Betyg |
| Utvecklare | Jared Tong |
| Betalningssätt | free |
| Hjälpsida URL | https://github.com/tongrhj/full_width_github/issues |
| Stödda Språk | 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\/*"
]
}
]
} | |