YouTube Row Fixer

The chrome extension for Increasing the videos per row.

ما هو YouTube Row Fixer؟

YouTube Row Fixer هو إضافة Chrome تم تطويرها بواسطة sapondanaisriwan، والميزة الرئيسية لها هي "The chrome extension for Increasing the videos per row.".

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

screenshot
screenshot

تحميل ملف CRX للإضافة YouTube Row Fixer

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

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

                        The chrome extension for Increasing the videos per row on all pages.

Source Code: https://github.com/sapondanaisriwan/youtube-row-fixer
Bug Report: https://github.com/sapondanaisriwan/youtube-row-fixer/issues                    

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

الاسم YouTube Row Fixer YouTube Row Fixer
ID kehjfphhkfppnnjhdfhanmehkegdppho
عنوان URL الرسمي https://chromewebstore.google.com/detail/youtube-row-fixer/kehjfphhkfppnnjhdfhanmehkegdppho
الوصف The chrome extension for Increasing the videos per row.
حجم الملف 70.62 KB
عدد التثبيتات 809
النسخة الحالية 1.0.4
آخر تحديث 2023-12-03
تاريخ النشر 2023-06-03
تقييم 4.41/5 مجموع تقييمات 27
المطور sapondanaisriwan
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/sapondanaisriwan/youtube-row-fixer
عنوان صفحة المساعدة https://github.com/sapondanaisriwan/youtube-row-fixer/issues
اللغات المدعومة en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YouTube Row Fixer",
    "description": "The chrome extension for Increasing the videos per row.",
    "version": "1.0.4",
    "permissions": [
        "tabs",
        "storage"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": ".\/asset\/img\/icon-16.png",
        "32": ".\/asset\/img\/icon-32.png",
        "48": ".\/asset\/img\/icon-48.png",
        "64": ".\/asset\/img\/icon-64.png",
        "128": ".\/asset\/img\/icon-128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                ".\/variables.js",
                ".\/content-script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/main.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}