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 là gì?

Youtube New Tab Search là một tiện ích mở rộng Chrome được phát triển bởi Max Girkins, và tính năng chính của nó là "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.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Youtube New Tab Search

Tải xuống các tệp mở rộng Youtube New Tab Search dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Youtube New Tab Search Youtube New Tab Search
ID lballhcooobklchmpmpneinkjafambof
URL Chính Thức https://chrome.google.com/webstore/detail/youtube-new-tab-search/lballhcooobklchmpmpneinkjafambof
Mô tả 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.
Kích Thước Tệp 51.23 KB
Số Lần Cài Đặt 303
Phiên Bản Hiện Tại 0.2
Cập Nhật Lần Cuối 2017-09-04
Ngày Phát Hành 2017-09-04
Đánh Giá 3.75/5 Tổng số 12 Đánh Giá
Nhà Phát Triển Max Girkins
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}