Content Scaler
This extension scales HTML content if the width of viewport was fixed.
Vad är Content Scaler?
Content Scaler är en Chrome-tillägg utvecklad av hossshy, och dess huvudfunktion är "This extension scales HTML content if the width of viewport was fixed.".
Tilläggsskärmbilder
Ladda ner Content Scaler-förlängningens CRX-fil
Ladda ner Content Scaler-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Content Scaler |
ID | dkmikdoddkbidgmbpiidfdaalhfpehph |
Officiell webbadress | https://chromewebstore.google.com/detail/content-scaler/dkmikdoddkbidgmbpiidfdaalhfpehph |
Beskrivning | This extension scales HTML content if the width of viewport was fixed. |
Filstorlek | 387 KB |
Antal Installationer | 64 |
Aktuell Version | 1.0.9 |
Senast Uppdaterad | 2017-06-28 |
Publiceringsdatum | 2017-06-27 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | hossshy |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/hossshy/content-scaler |
URL till Sekretesspolicy Sidan | https://yuchesc.github.io/privacy.html |
Stödda Språk | 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" } ] } |