YouTabMan

A Web Extension used to control all of your YouTube tabs.

ما هو YouTabMan؟

YouTabMan هو إضافة Chrome تم تطويرها بواسطة Theenadayalan، والميزة الرئيسية لها هي "A Web Extension used to control all of your YouTube tabs.".

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

screenshot

تحميل ملف CRX للإضافة YouTabMan

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

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

                        YouTabMan is a Web Extension to control all of your currently running Youtube videos at one place. 

v1.3.2
- Pause button label name change fix

v1.3.0
- Migrated to VueJs framework
- Added loop button
- Hover next button view the next song

v1.2.0 - 1.2.3
- Search Event Fix
- Internal Fix
- Icon Update
- UI Fix

v1.1.0

- Replay Button Added

v1.0.0

- You will be having Play/Pause/Replay, Next, Mute Control inside YouTabMan.
- You can also able to close the tab if you want to.
- Searching is also possible in YouTabMan                    

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

الاسم YouTabMan YouTabMan
ID pfflnpdlbjjkgnelipgknanbnjafijgi
عنوان URL الرسمي https://chromewebstore.google.com/detail/youtabman/pfflnpdlbjjkgnelipgknanbnjafijgi
الوصف A Web Extension used to control all of your YouTube tabs.
حجم الملف 45.28 KB
عدد التثبيتات 33
النسخة الحالية 1.3.2
آخر تحديث 2019-04-02
تاريخ النشر 2019-04-02
تقييم 5.00/5 مجموع تقييمات 4
المطور Theenadayalan
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://www.theenadayalan.me
عنوان صفحة المساعدة https://github.com/theenadayalank/youtabman
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTabMan",
    "version": "1.3.2",
    "description": "A Web Extension used to control all of your YouTube tabs.",
    "browser_action": {
        "default_title": "YouTabMan",
        "default_popup": "index.html",
        "default_icon": "logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "background.js"
            ]
        }
    ],
    "icons": {
        "128": "logo.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}