Search and Watch

Let you search on Youtube while a video is playing.

什麼是Search and Watch?

Search and Watch是由natkongg2開發的Chrome擴展程式,該擴展的主要功能是“Let you search on Youtube while a video is playing.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Search and Watch擴展crx文件

下載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
官方網址 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"
    ]
}