GitHub Custom Tab Size
Make tab indented code more readable by allowing you to set a custom tab size
Apa itu GitHub Custom Tab Size?
GitHub Custom Tab Size adalah ekstensi Chrome yang dikembangkan oleh lukechilds, dan fitur utamanya adalah "Make tab indented code more readable by allowing you to set a custom tab size".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi GitHub Custom Tab Size
Unduh file ekstensi GitHub Custom Tab Size 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
Set custom tab size for code view on GitHub.com. The tab size setting is synced across all Chrome browsers you're logged into.
Informasi Dasar Ekstensi
Nama | GitHub Custom Tab Size |
ID | jcjfkmdkcaopkioccnpbhiemfcmpnghe |
URL Resmi | https://chromewebstore.google.com/detail/github-custom-tab-size/jcjfkmdkcaopkioccnpbhiemfcmpnghe |
Deskripsi | Make tab indented code more readable by allowing you to set a custom tab size |
Ukuran File | 22.35 KB |
Jumlah Instalasi | 557 |
Versi Saat Ini | 1.1.0 |
Terakhir Diperbarui | 2019-05-06 |
Tanggal Publikasi | 2019-05-06 |
Penilaian | 4.30/5 Total 10 Penilaian |
Pengembang | lukechilds |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/lukechilds/github-custom-tab-size |
Bahasa yang Didukung | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitHub Custom Tab Size", "version": "1.1.0", "icons": { "256": "icon.png" }, "description": "Make tab indented code more readable by allowing you to set a custom tab size", "homepage_url": "https:\/\/github.com\/lukechilds\/github-custom-tab-size", "manifest_version": 2, "minimum_chrome_version": "36", "browser_action": { "default_popup": "src\/popup.html" }, "permissions": [ "storage" ], "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/github.com\/*\/*", "https:\/\/gist.github.com\/*\/*" ], "js": [ "src\/content.js" ] } ] } |