Better YouTube Search
Fix YouTube search results by showing all search results and stop Recommended videos from appearing in your search results.
Better YouTube Searchคืออะไร?
Better YouTube Search เป็นส่วนขยายของ Chrome ที่พัฒนาโดย chadwkirk และคุณลักษณะหลักของมันคือ "Fix YouTube search results by showing all search results and stop Recommended videos from appearing in your search results."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Better YouTube Search
ดาวน์โหลดไฟล์ส่วนขยาย Better YouTube Search ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
With one click of a button, you can now find what you're actually looking for when searching on YouTube! This extension stops YouTube from showing you those "People Also Watched", "For You" and "Suggested" videos when you search for something. This is helpful for when you are searching for something on YouTube and the first few search results aren't what you're looking for. You can now go back to how YouTube used to be with the Better YouTube Search extension!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Better YouTube Search |
ID | ipnifedcddhdmpnldgfioocmglegkccj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/better-youtube-search/ipnifedcddhdmpnldgfioocmglegkccj |
คำอธิบาย | Fix YouTube search results by showing all search results and stop Recommended videos from appearing in your search results. |
ขนาดไฟล์ | 2.31 MB |
จำนวนการติดตั้ง | 1,347 |
เวอร์ชันปัจจุบัน | 2.0 |
อัปเดตครั้งล่าสุด | 2023-07-26 |
วันที่เผยแพร่ | 2023-05-07 |
คะแนน | 3.68/5 รวมทั้งหมด 22 คะแนน |
ผู้พัฒนา | chadwkirk |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Better YouTube Search", "description": "Fix YouTube search results by showing all search results and stop Recommended videos from appearing in your search results.", "version": "2.0", "background": { "service_worker": "scripts\/background.js" }, "permissions": [ "tabs", "storage" ], "action": { "default_popup": "popup.html" }, "icons": { "16": "images\/better-youtube-search-icon-16-grey.png", "32": "images\/better-youtube-search-icon-32.png", "48": "images\/better-youtube-search-icon-48.png", "128": "images\/better-youtube-search-icon-128.png" }, "content_scripts": [ { "css": [ "style.css" ], "js": [ "scripts\/content.js" ], "matches": [ "https:\/\/*.youtube.com\/*", "https:\/\/youtube.com\/*" ] } ] } |