Tube Scale

Scale the YouTube player to fill the browser window in one click. Advanced cinema mode!

ما هو Tube Scale؟

Tube Scale هو إضافة Chrome تم تطويرها بواسطة https://jameygleason.com، والميزة الرئيسية لها هي "Scale the YouTube player to fill the browser window in one click. Advanced cinema mode!".

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

screenshot

تحميل ملف CRX للإضافة Tube Scale

قم بتنزيل ملفات الامتداد Tube Scale بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Similar to theater mode, but better! Make the YouTube player fill the browser window.

When active, it removes the header bar and assures that if you are scrolled to the top of the screen, you will have nothing but video content in your browser window.

Save yourself the trouble of going "full" full-screen so you can easily navigate between tabs and other programs with ease!

This is an open source project. If you have ideas on how to make it better, become a contributor!

https://github.com/jameygleason/tube_scale                    

معلومات أساسية عن التمديد

الاسم Tube Scale Tube Scale
ID knaccnglpjaienjodleaolalepppfloc
عنوان URL الرسمي https://chromewebstore.google.com/detail/tube-scale/knaccnglpjaienjodleaolalepppfloc
الوصف Scale the YouTube player to fill the browser window in one click. Advanced cinema mode!
حجم الملف 42.49 KB
عدد التثبيتات 13
النسخة الحالية 1.0.2
آخر تحديث 2018-12-17
تاريخ النشر 2018-12-16
تقييم 1.00/5 مجموع تقييمات 1
المطور https://jameygleason.com
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tube Scale",
    "description": "Scale the YouTube player to fill the browser window in one click. Advanced cinema mode!",
    "version": "1.0.2",
    "icons": {
        "128": "assets\/icon_128.png"
    },
    "browser_action": {
        "default_icon": "assets\/icon.png",
        "\/\/": "default_popup colon popup.html"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "http:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}