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