Content Scaler

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

Co to jest Content Scaler?

Content Scaler to rozszerzenie Chrome opracowane przez hossshy, a jego główną funkcją jest „This extension scales HTML content if the width of viewport was fixed.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Content Scaler

Pobierz pliki rozszerzeń Content Scaler w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Content Scaler Content Scaler
ID dkmikdoddkbidgmbpiidfdaalhfpehph
Oficjalny URL https://chromewebstore.google.com/detail/content-scaler/dkmikdoddkbidgmbpiidfdaalhfpehph
Opis This extension scales HTML content if the width of viewport was fixed.
Rozmiar pliku 387 KB
Liczba instalacji 64
Aktualna Wersja 1.0.9
Ostatnia Aktualizacja 2017-06-28
Data Publikacji 2017-06-27
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper hossshy
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/hossshy/content-scaler
Adres URL Strony Polityki Prywatności https://yuchesc.github.io/privacy.html
Obsługiwane Języki 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"
        }
    ]
}