Widescreen for GitHub
Toggle the width of GitHub with a click
Apa itu Widescreen for GitHub?
Widescreen for GitHub adalah ekstensi Chrome yang dikembangkan oleh Søren Louv-Jansen, dan fitur utamanya adalah "Toggle the width of GitHub with a click".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Widescreen for GitHub
Unduh file ekstensi Widescreen for GitHub dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Widescreen for GitHub |
ID | elikdceclccjilahimjfceoalhdbndan |
URL Resmi | https://chromewebstore.google.com/detail/widescreen-for-github/elikdceclccjilahimjfceoalhdbndan |
Deskripsi | Toggle the width of GitHub with a click |
Ukuran File | 1.94 MB |
Jumlah Instalasi | 2,604 |
Versi Saat Ini | 0.7.5 |
Terakhir Diperbarui | 2020-11-10 |
Tanggal Publikasi | 2020-07-02 |
Penilaian | 4.21/5 Total 24 Penilaian |
Pengembang | Søren Louv-Jansen |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/sqren/github-widescreen |
URL Halaman Bantuan | https://github.com/sqren/github-widescreen |
Bahasa yang Didukung | 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" ] } ] } |