Content Scaler
This extension scales HTML content if the width of viewport was fixed.
O que é Content Scaler?
Content Scaler é uma extensão do Chrome desenvolvida por hossshy, e sua principal característica é "This extension scales HTML content if the width of viewport was fixed.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Content Scaler
Baixe arquivos de extensão Content Scaler no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Content Scaler |
ID | dkmikdoddkbidgmbpiidfdaalhfpehph |
URL Oficial | https://chromewebstore.google.com/detail/content-scaler/dkmikdoddkbidgmbpiidfdaalhfpehph |
Descrição | This extension scales HTML content if the width of viewport was fixed. |
Tamanho do Arquivo | 387 KB |
Contagem de Instalações | 64 |
Versão Atual | 1.0.9 |
Última Atualização | 2017-06-28 |
Data de Publicação | 2017-06-27 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | hossshy |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/hossshy/content-scaler |
URL da Página de Política de Privacidade | https://yuchesc.github.io/privacy.html |
Idiomas Suportados | 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" } ] } |