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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    ]
}