Content Scaler
This extension scales HTML content if the width of viewport was fixed.
Content Scaler là gì?
Content Scaler là một tiện ích mở rộng Chrome được phát triển bởi hossshy, và tính năng chính của nó là "This extension scales HTML content if the width of viewport was fixed.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Content Scaler
Tải xuống các tệp mở rộng Content Scaler dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Content Scaler |
ID | dkmikdoddkbidgmbpiidfdaalhfpehph |
URL Chính Thức | https://chromewebstore.google.com/detail/content-scaler/dkmikdoddkbidgmbpiidfdaalhfpehph |
Mô tả | This extension scales HTML content if the width of viewport was fixed. |
Kích Thước Tệp | 387 KB |
Số Lần Cài Đặt | 64 |
Phiên Bản Hiện Tại | 1.0.9 |
Cập Nhật Lần Cuối | 2017-06-28 |
Ngày Phát Hành | 2017-06-27 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | hossshy |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/hossshy/content-scaler |
URL Trang Chính Sách Bảo Mật | https://yuchesc.github.io/privacy.html |
Ngôn Ngữ Được Hỗ Trợ | 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" } ] } |