YTPP
YTPP: YouTube Play/Pause without switching tabs
ما هو YTPP؟
YTPP هو إضافة Chrome تم تطويرها بواسطة spidergears، والميزة الرئيسية لها هي "YTPP: YouTube Play/Pause without switching tabs".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة YTPP
قم بتنزيل ملفات الامتداد YTPP بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
                        YTPP: YouTube Play/Pause
Extension lets user play/pause youtube without having to switch tabs. Clicking the extension button toggles playback state for all open youtube tabs.                     معلومات أساسية عن التمديد
| الاسم |  | 
| ID | onlhipebedljinheklgalifgbolcmndi | 
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/ytpp/onlhipebedljinheklgalifgbolcmndi | 
| الوصف | YTPP: YouTube Play/Pause without switching tabs | 
| حجم الملف | 10.16 KB | 
| عدد التثبيتات | 23 | 
| النسخة الحالية | 0.1 | 
| آخر تحديث | 2016-11-20 | 
| تاريخ النشر | 2016-11-20 | 
| تقييم | 3.00/5 مجموع تقييمات 2 | 
| المطور | spidergears | 
| البريد الإلكتروني | [email protected] | 
| نوع الدفع | free | 
| اللغات المدعومة | en-GB | 
| manifest.json | |
| {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YTPP",
    "short_name": "YTPP",
    "version": "0.1",
    "description": "YTPP: YouTube Play\/Pause without switching tabs",
    "icons": {
        "128": "icon.png",
        "48": "icon_48.png",
        "16": "icon_16.png"
    },
    "author": {
        "name": "spidergears",
        "twitter_handle": "spider_gears",
        "github": "http:\/\/github.com\/spidergears"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "YTPP"
    },
    "permissions": [
        "tabs"
    ],
    "background": {
        "scripts": [
            "ytpp_background_script.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.youtube.com\/*",
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "ytpp_content_script.js"
            ]
        }
    ]
} | |