Content Scaler
This extension scales HTML content if the width of viewport was fixed.
Content Scalerคืออะไร?
Content Scaler เป็นส่วนขยายของ Chrome ที่พัฒนาโดย hossshy และคุณลักษณะหลักของมันคือ "This extension scales HTML content if the width of viewport was fixed."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Content Scaler
ดาวน์โหลดไฟล์ส่วนขยาย Content Scaler ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Content Scaler |
ID | dkmikdoddkbidgmbpiidfdaalhfpehph |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/content-scaler/dkmikdoddkbidgmbpiidfdaalhfpehph |
คำอธิบาย | This extension scales HTML content if the width of viewport was fixed. |
ขนาดไฟล์ | 387 KB |
จำนวนการติดตั้ง | 64 |
เวอร์ชันปัจจุบัน | 1.0.9 |
อัปเดตครั้งล่าสุด | 2017-06-28 |
วันที่เผยแพร่ | 2017-06-27 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | hossshy |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/hossshy/content-scaler |
URL หน้านโยบายความเป็นส่วนตัว | https://yuchesc.github.io/privacy.html |
ภาษาที่รองรับ | 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" } ] } |