Search and Watch

Let you search on Youtube while a video is playing.

O que é Search and Watch?

Search and Watch é uma extensão do Chrome desenvolvida por natkongg2, e sua principal característica é "Let you search on Youtube while a video is playing.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Search and Watch

Baixe arquivos de extensão Search and Watch no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Search and Watch Search and Watch
ID ljnmhiabegceemcenbabphfggdgmeoic
URL Oficial https://chrome.google.com/webstore/detail/search-and-watch/ljnmhiabegceemcenbabphfggdgmeoic
Descrição Let you search on Youtube while a video is playing.
Tamanho do Arquivo 122 KB
Contagem de Instalações 34
Versão Atual 1.0
Última Atualização 2016-03-05
Data de Publicação 2016-03-05
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor natkongg2
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}