Content Scaler

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

ما هو Content Scaler؟

Content Scaler هو إضافة Chrome تم تطويرها بواسطة hossshy، والميزة الرئيسية لها هي "This extension scales HTML content if the width of viewport was fixed.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Content Scaler

قم بتنزيل ملفات الامتداد Content Scaler بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة سياسة الخصوصية 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"
        }
    ]
}