Content Scaler

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

Content Scaler क्या है?

Content Scaler hossshy द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension scales HTML content if the width of viewport was fixed."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Content Scaler एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Content Scaler Content Scaler
ID dkmikdoddkbidgmbpiidfdaalhfpehph
आधिकारिक URL https://chromewebstore.google.com/detail/content-scaler/dkmikdoddkbidgmbpiidfdaalhfpehph
विवरण This extension scales HTML content if the width of viewport was fixed.
फ़ाइल का आकार 387 KB
स्थापना संख्या 64
वर्तमान संस्करण 1.0.9
अंतिम अपडेट 2017-06-28
प्रकाशन तिथि 2017-06-27
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर hossshy
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/hossshy/content-scaler
गोपनीयता नीति पृष्ठ URL https://yuchesc.github.io/privacy.html
समर्थित भाषाएँ 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"
        }
    ]
}