Guitar Tabs for YouTube

This extension will look into the current YouTube video description section and show available guitar tabs.

ما هو Guitar Tabs for YouTube؟

Guitar Tabs for YouTube هو إضافة Chrome تم تطويرها بواسطة https://www.music-theory.biz، والميزة الرئيسية لها هي "This extension will look into the current YouTube video description section and show available guitar tabs.".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Guitar Tabs for YouTube

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

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

                        The tabs should be written in this format: Am: 122000, in order to be extracted.                    

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

الاسم Guitar Tabs for YouTube Guitar Tabs for YouTube
ID hehbipgbdjhpnhbgapjokhanboefalfj
عنوان URL الرسمي https://chromewebstore.google.com/detail/guitar-tabs-for-youtube/hehbipgbdjhpnhbgapjokhanboefalfj
الوصف This extension will look into the current YouTube video description section and show available guitar tabs.
حجم الملف 8.01 KB
عدد التثبيتات 405
النسخة الحالية 1.0.0
آخر تحديث 2017-06-03
تاريخ النشر 2017-06-03
تقييم 3.00/5 مجموع تقييمات 4
المطور https://www.music-theory.biz
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Guitar Tabs for YouTube",
    "description": "This extension will look into the current YouTube video description section and show available guitar tabs.",
    "version": "1.0.0",
    "browser_action": {
        "default_icon": "icon_128.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}