Widescreen for GitHub
Toggle the width of GitHub with a click
Vad är Widescreen for GitHub?
Widescreen for GitHub är en Chrome-tillägg utvecklad av Søren Louv-Jansen, och dess huvudfunktion är "Toggle the width of GitHub with a click".
Tilläggsskärmbilder
Ladda ner Widescreen for GitHub-förlängningens CRX-fil
Ladda ner Widescreen for 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
Often the lines of code on Github are too long to fit within the fixed 920px width. This extension will take full advantage of your screen and show the code in 100% width! It works for all content on Github: PRs, commits, Gists, etc. It is easy to toggle the width on/off whenever you need it - it even comes with a nice transition. Bugs: https://github.com/sqren/github-widescreen/issues Fork: https://github.com/sqren/github-widescreen
Grundläggande Information om Tillägg
Namn | Widescreen for GitHub |
ID | elikdceclccjilahimjfceoalhdbndan |
Officiell webbadress | https://chromewebstore.google.com/detail/widescreen-for-github/elikdceclccjilahimjfceoalhdbndan |
Beskrivning | Toggle the width of GitHub with a click |
Filstorlek | 1.94 MB |
Antal Installationer | 2,604 |
Aktuell Version | 0.7.5 |
Senast Uppdaterad | 2020-11-10 |
Publiceringsdatum | 2020-07-02 |
Betyg | 4.21/5 Totalt 24 Betyg |
Utvecklare | Søren Louv-Jansen |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/sqren/github-widescreen |
Hjälpsida URL | https://github.com/sqren/github-widescreen |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Widescreen for GitHub", "short_name": "Widescreen for Github", "description": "Toggle the width of GitHub with a click", "version": "0.7.5", "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "permissions": [ "https:\/\/github.com\/*", "storage" ], "browser_action": { "default_icon": { "19": "images\/icon-19.png", "38": "images\/icon-38.png" } }, "background": { "scripts": [ "background-scripts.js" ] }, "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/*.github.com\/*" ], "js": [ "content-scripts.js" ], "css": [ "content-styles.css" ] } ] } |