YouTube Everywhere

Lets YouTube videos play on any page with a YouTube Link

ما هو YouTube Everywhere؟

YouTube Everywhere هو إضافة Chrome تم تطويرها بواسطة Jared Frank، والميزة الرئيسية لها هي "Lets YouTube videos play on any page with a YouTube Link".

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

screenshot

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

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

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

                        YouTube Everywhere adds small YouTube icons next YouTube links on any page. Clicking the icon will expand a small YouTube player to be able to watch the video without having to change pages or open a new tab!                    

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

الاسم YouTube Everywhere YouTube Everywhere
ID aabngppaojjlinklfhfgdlofeddimohg
عنوان URL الرسمي https://chrome.google.com/webstore/detail/youtube-everywhere/aabngppaojjlinklfhfgdlofeddimohg
الوصف Lets YouTube videos play on any page with a YouTube Link
حجم الملف 104 KB
عدد التثبيتات 1,000
النسخة الحالية 1.3.3
آخر تحديث 2015-08-12
تاريخ النشر 2015-08-12
تقييم 3.93/5 مجموع تقييمات 30
المطور Jared Frank
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Everywhere",
    "description": "Lets YouTube videos play on any page with a YouTube Link",
    "version": "1.3.3",
    "icons": {
        "16": "img\/ytlogo128.png",
        "48": "img\/ytlogo128.png",
        "128": "img\/ytlogo128.png"
    },
    "background": {
        "scripts": [
            "main.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "img\/youtube.png"
    ],
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/www.youtube.com\/*",
                "*:\/\/www.reddit.com\/",
                "*:\/\/www.reddit.com\/?*"
            ],
            "run_at": "document_end",
            "css": [
                "style.css"
            ],
            "js": [
                "jquery.min.js",
                "main.js"
            ]
        }
    ]
}