Youtube New Tab Search

A youtube tweak to open search results in a new tab so your music keeps playing in the background while you look for your next tune.

O que é Youtube New Tab Search?

Youtube New Tab Search é uma extensão do Chrome desenvolvida por Max Girkins, e sua principal característica é "A youtube tweak to open search results in a new tab so your music keeps playing in the background while you look for your next tune.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Youtube New Tab Search

Baixe arquivos de extensão Youtube New Tab Search 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

                        Youtube New Tab Search adds a button to the right of the youtube search bar that when clicked will open up search results in a new tab so that the currently playing video doesn't stop.

-unobtrusive, fits youtube's native style
-makes the search tab active

*** newly updated to support the new youtube!                    

Informações Básicas da Extensão

Nome Youtube New Tab Search Youtube New Tab Search
ID lballhcooobklchmpmpneinkjafambof
URL Oficial https://chrome.google.com/webstore/detail/youtube-new-tab-search/lballhcooobklchmpmpneinkjafambof
Descrição A youtube tweak to open search results in a new tab so your music keeps playing in the background while you look for your next tune.
Tamanho do Arquivo 51.23 KB
Contagem de Instalações 303
Versão Atual 0.2
Última Atualização 2017-09-04
Data de Publicação 2017-09-04
Classificação 3.75/5 Total de 12 Avaliações
Desenvolvedor Max Girkins
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube New Tab Search",
    "manifest_version": 2,
    "version": "0.2",
    "permissions": [
        "tabs",
        "webNavigation"
    ],
    "description": "A youtube tweak to open search results in a new tab so your music keeps playing in the background while you look for your next tune.",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "jquery.js",
                "youtubescript.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}