Content Scaler

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

Co je Content Scaler?

Content Scaler je rozšíření Chrome vyvinuté hossshy, a jeho hlavní funkcí je „This extension scales HTML content if the width of viewport was fixed.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Content Scaler

Stáhněte si soubory rozšíření Content Scaler ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Content Scaler Content Scaler
ID dkmikdoddkbidgmbpiidfdaalhfpehph
Oficiální URL https://chromewebstore.google.com/detail/content-scaler/dkmikdoddkbidgmbpiidfdaalhfpehph
Popis This extension scales HTML content if the width of viewport was fixed.
Velikost souboru 387 KB
Počet instalací 64
Aktuální Verze 1.0.9
Poslední Aktualizace 2017-06-28
Datum Vydání 2017-06-27
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář hossshy
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/hossshy/content-scaler
URL Stránky Zásad Ochrany Soukromí https://yuchesc.github.io/privacy.html
Podporované Jazyky 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"
        }
    ]
}