Search and Watch

Let you search on Youtube while a video is playing.

ما هو Search and Watch؟

Search and Watch هو إضافة Chrome تم تطويرها بواسطة natkongg2، والميزة الرئيسية لها هي "Let you search on Youtube while a video is playing.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Search and Watch

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

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

                        This chrome extension is a mobile-like YouTube application. If you search or just change page on YouTube, the video you're watching will be at the bottom to let you do both at the same time.                    

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

الاسم Search and Watch Search and Watch
ID ljnmhiabegceemcenbabphfggdgmeoic
عنوان URL الرسمي https://chrome.google.com/webstore/detail/search-and-watch/ljnmhiabegceemcenbabphfggdgmeoic
الوصف Let you search on Youtube while a video is playing.
حجم الملف 122 KB
عدد التثبيتات 34
النسخة الحالية 1.0
آخر تحديث 2016-03-05
تاريخ النشر 2016-03-05
تقييم 5.00/5 مجموع تقييمات 1
المطور natkongg2
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Search and Watch",
    "short_name": "SNW",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Let you search on Youtube while a video is playing.",
    "icons": {
        "16": "SNWIcon16.png",
        "48": "SNWIcon48.png",
        "128": "SNWIcon128.png"
    },
    "permissions": [
        "tabs",
        "https:\/\/www.youtube.com\/*",
        "storage"
    ],
    "browser_action": {
        "default_icon": "SNWIcon16.png",
        "default_popup": "popup.html",
        "default_title": "Activate\/Desactivate the minimized watching on Youtube."
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "jquery-2.1.3.min.js",
                "SNWJS.js"
            ],
            "css": [
                "SNWCSS.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "remove.png",
        "goto.png"
    ]
}