Content Scaler
This extension scales HTML content if the width of viewport was fixed.
What is Content Scaler?
Content Scaler is a Chrome extension developed by hossshy, and its main feature is "This extension scales HTML content if the width of viewport was fixed.".
Extension Screenshots
Download Content Scaler Extension CRX File
Download Content Scaler extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Content Scaler |
ID | dkmikdoddkbidgmbpiidfdaalhfpehph |
Official URL | https://chromewebstore.google.com/detail/content-scaler/dkmikdoddkbidgmbpiidfdaalhfpehph |
Description | This extension scales HTML content if the width of viewport was fixed. |
File Size | 387 KB |
Installation Count | 64 |
Current Version | 1.0.9 |
Last Updated | 2017-06-28 |
Publish Date | 2017-06-27 |
Rating | 5.00/5 Total 2 Ratings |
Developer | hossshy |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/hossshy/content-scaler |
Privacy Policy Page URL | https://yuchesc.github.io/privacy.html |
Supported Languages | 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" } ] } |