Content Scaler
This extension scales HTML content if the width of viewport was fixed.
Wat is Content Scaler?
Content Scaler is een Chrome-extensie ontwikkeld door hossshy, en de belangrijkste functie is "This extension scales HTML content if the width of viewport was fixed.".
Extensie Screenshots
Download het CRX-bestand van de extensie Content Scaler
Download Content Scaler-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Content Scaler |
ID | dkmikdoddkbidgmbpiidfdaalhfpehph |
Officiële URL | https://chromewebstore.google.com/detail/content-scaler/dkmikdoddkbidgmbpiidfdaalhfpehph |
Beschrijving | This extension scales HTML content if the width of viewport was fixed. |
Bestandsgrootte | 387 KB |
Aantal Installaties | 64 |
Huidige Versie | 1.0.9 |
Laatst Bijgewerkt | 2017-06-28 |
Publicatiedatum | 2017-06-27 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | hossshy |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/hossshy/content-scaler |
URL van de Privacybeleid Pagina | https://yuchesc.github.io/privacy.html |
Ondersteunde Talen | 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" } ] } |