Wide GitHub
Change all GitHub repository and gist pages to be full width and dynamically sized.
Apa itu Wide GitHub?
Wide GitHub adalah ekstensi Chrome yang dikembangkan oleh xthexder, dan fitur utamanya adalah "Change all GitHub repository and gist pages to be full width and dynamically sized.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Wide GitHub
Unduh file ekstensi Wide 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
Features: - Read long lines of code without scrolling left to right - See more documentation at once when using large / high-dpi monitors - Easily toggleable for viewing size-dependent docs or wiki pages.
Informasi Dasar Ekstensi
Nama | Wide GitHub |
ID | kaalofacklcidaampbokdplbklpeldpj |
URL Resmi | https://chromewebstore.google.com/detail/wide-github/kaalofacklcidaampbokdplbklpeldpj |
Deskripsi | Change all GitHub repository and gist pages to be full width and dynamically sized. |
Ukuran File | 17.76 KB |
Jumlah Instalasi | 7,602 |
Versi Saat Ini | 1.6.5 MV3 |
Terakhir Diperbarui | 2024-02-07 |
Tanggal Publikasi | 2020-06-26 |
Penilaian | 4.55/5 Total 66 Penilaian |
Pengembang | xthexder |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/xthexder/wide-github |
URL Halaman Bantuan | https://github.com/xthexder/wide-github/issues |
Bahasa yang Didukung | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Wide GitHub", "description": "Change all GitHub repository and gist pages to be full width and dynamically sized.", "version": "1.6.5", "version_name": "1.6.5 MV3", "icons": { "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "action": { "default_icon": "icons\/icon.png", "default_title": "Toggle Wide GitHub" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*", "https:\/\/gist.github.com\/*" ], "css": [ "wide-github.css" ], "js": [ "wide-github-toggle.js" ] } ], "background": { "service_worker": "background.js" } } |