Youtube Tags

Find tags of youtube video tags

ما هو Youtube Tags؟

Youtube Tags هو إضافة Chrome تم تطويرها بواسطة https://www.thebyteseffect.com، والميزة الرئيسية لها هي "Find tags of youtube video tags".

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

screenshot

تحميل ملف CRX للإضافة Youtube Tags

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

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

                        Youtube meta Tags are considered as an important factor in ranking of videos for a particular query.
There are times where you need to find the tags of popular videos to analyse. Now you can view the tags of the YouTube video you are watching with this extension. The only thing you need to do is to install this extension, then go to the YouTube video and below the video player, you can find the tags of the video are shown in the screenshot.                    

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

الاسم Youtube Tags Youtube Tags
ID agbfjkmjmngmkfkioadpoeonohlcmiga
عنوان URL الرسمي https://chromewebstore.google.com/detail/youtube-tags/agbfjkmjmngmkfkioadpoeonohlcmiga
الوصف Find tags of youtube video tags
حجم الملف 43.96 KB
عدد التثبيتات 11,534
النسخة الحالية 2.1.5
آخر تحديث 2022-09-04
تاريخ النشر 2020-06-22
تقييم 4.28/5 مجموع تقييمات 305
المطور https://www.thebyteseffect.com
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://thebyteseffect.com
اللغات المدعومة en
manifest.json
{
    "name": "Youtube Tags",
    "description": "Find tags of youtube video tags",
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "2.1.5",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "name": "Find youtube video tags\/keywords for the video you are watching",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "3.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "jquery.js",
                "contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "1.png",
        "48": "2.png",
        "128": "3.png"
    },
    "web_accessible_resources": [
        "*.png",
        "*.PNG",
        "youtubekeyword.js"
    ],
    "permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "manifest_version": 2
}