Content Scaler

This extension scales HTML content if the width of viewport was fixed.

Cos'è Content Scaler?

Content Scaler è un'estensione di Chrome sviluppata da hossshy, e la sua funzione principale è "This extension scales HTML content if the width of viewport was fixed.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Content Scaler

Scarica i file di estensione Content Scaler in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Content Scaler Content Scaler
ID dkmikdoddkbidgmbpiidfdaalhfpehph
URL Ufficiale https://chromewebstore.google.com/detail/content-scaler/dkmikdoddkbidgmbpiidfdaalhfpehph
Descrizione This extension scales HTML content if the width of viewport was fixed.
Dimensione del File 387 KB
Conteggio Installazioni 64
Versione Corrente 1.0.9
Ultimo Aggiornamento 2017-06-28
Data di Pubblicazione 2017-06-27
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore hossshy
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/hossshy/content-scaler
URL della Pagina della Politica sulla Privacy https://yuchesc.github.io/privacy.html
Lingue Supportate 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"
        }
    ]
}