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.

什麼是Youtube New Tab Search?

Youtube New Tab Search是由Max Girkins開發的Chrome擴展程式,該擴展的主要功能是“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.”。

擴展截圖

screenshot

下載Youtube New Tab Search擴展crx文件

下載Youtube New Tab Search擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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!                    

擴展基本資訊

名稱 Youtube New Tab Search Youtube New Tab Search
ID lballhcooobklchmpmpneinkjafambof
官方網址 https://chrome.google.com/webstore/detail/youtube-new-tab-search/lballhcooobklchmpmpneinkjafambof
簡介 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.
檔案大小 51.23 KB
安裝次數 303
目前版本 0.2
更新時間 2017-09-04
上架時間 2017-09-04
評分 3.75/5 共 12 次評分
開發者 Max Girkins
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
        ]
    }
}