YouTube channel location

Show info about the YouTube channel location(country) in the video description.

ما هو YouTube channel location؟

YouTube channel location هو إضافة Chrome تم تطويرها بواسطة arsxrs، والميزة الرئيسية لها هي "Show info about the YouTube channel location(country) in the video description.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة YouTube channel location

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

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

                        The extension adds a label with the region(location) information of the YouTube channel near the video description.                    

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

الاسم YouTube channel location YouTube channel location
ID lagfgccfpnemkkekoonccjidinipogpd
عنوان URL الرسمي https://chrome.google.com/webstore/detail/lagfgccfpnemkkekoonccjidinipogpd
الوصف Show info about the YouTube channel location(country) in the video description.
حجم الملف 132 KB
عدد التثبيتات 763
النسخة الحالية 1.4.1
آخر تحديث 2023-08-30
تاريخ النشر 2022-04-29
تقييم 4.56/5 مجموع تقييمات 9
المطور arsxrs
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en,ru,uk
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.4.1",
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "action": [],
    "content_scripts": [
        {
            "run_at": "document_start",
            "js": [
                "content-script.js"
            ],
            "css": [
                "content-script.css"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "https:\/\/www.youtube.com\/*"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    }
}