Content Scaler
This extension scales HTML content if the width of viewport was fixed.
Apa itu Content Scaler?
Content Scaler adalah ekstensi Chrome yang dikembangkan oleh hossshy, dan fitur utamanya adalah "This extension scales HTML content if the width of viewport was fixed.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Content Scaler
Unduh file ekstensi Content Scaler 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
When you check HTML content which sets fixed viewport, this extension scales the content automatically. So you do not need to move horizontal scroll bar. If you want to use it to local HTML files you need to check 'Allow access to file URLs' on Extensions page.
Informasi Dasar Ekstensi
Nama | Content Scaler |
ID | dkmikdoddkbidgmbpiidfdaalhfpehph |
URL Resmi | https://chromewebstore.google.com/detail/content-scaler/dkmikdoddkbidgmbpiidfdaalhfpehph |
Deskripsi | This extension scales HTML content if the width of viewport was fixed. |
Ukuran File | 387 KB |
Jumlah Instalasi | 64 |
Versi Saat Ini | 1.0.9 |
Terakhir Diperbarui | 2017-06-28 |
Tanggal Publikasi | 2017-06-27 |
Penilaian | 5.00/5 Total 2 Penilaian |
Pengembang | hossshy |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/hossshy/content-scaler |
URL Halaman Kebijakan Privasi | https://yuchesc.github.io/privacy.html |
Bahasa yang Didukung | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Content Scaler", "description": "This extension scales HTML content if the width of viewport was fixed.", "version": "1.0.9", "icons": { "16": "image\/icon\/16.png", "64": "image\/icon\/64.png" }, "page_action": { "default_icon": "image\/icon\/16.png" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*", "file:\/\/*\/*" ], "exclude_matches": [ "https:\/\/www.smbc-card.com\/*" ], "js": [ "js\/jquery-3.2.1.min.js", "js\/content_scripts.js" ], "run_at": "document_start" } ] } |