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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Max Girkins และคุณลักษณะหลักของมันคือ "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

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube New Tab Search

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
        ]
    }
}