Youtube focus
Blocks Youtube recommendations so that you see only what you search.
Youtube focusคืออะไร?
Youtube focus เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Priyanshu Nayan และคุณลักษณะหลักของมันคือ "Blocks Youtube recommendations so that you see only what you search."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube focus
ดาวน์โหลดไฟล์ส่วนขยาย Youtube focus ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension removes all the recommended videos that you click to waste time, also it removes comments which i s not productive and also removes autoplay which makes you stick to the site and keep binge watching. Just search the videos you necessarily want to watch and that's it. That's what youtube was built for, that's what youtube should be used for.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Youtube focus |
ID | elnjcclakbcdhbljljckfokbpmcicemo |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youtube-focus/elnjcclakbcdhbljljckfokbpmcicemo |
คำอธิบาย | Blocks Youtube recommendations so that you see only what you search. |
ขนาดไฟล์ | 10.62 KB |
จำนวนการติดตั้ง | 40 |
เวอร์ชันปัจจุบัน | 1.0.1 |
อัปเดตครั้งล่าสุด | 2020-04-08 |
วันที่เผยแพร่ | 2020-04-08 |
คะแนน | 4.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | Priyanshu Nayan |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/priyanshunayan/youtube-focus |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube focus", "version": "1.0.1", "description": "Blocks Youtube recommendations so that you see only what you search.", "background": { "scripts": [ "background.js" ], "permissions": [ "storage", "tabs", "declarativeContent" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/", "*:\/\/youtube.com\/", "*:\/\/youtube.com\/watch*", "*:\/\/www.youtube.com\/watch*" ], "js": [ "content.js" ] } ], "page_action": { "default_popup": "popup.html" }, "default_icon": { "16": "images\/get_started16.png", "32": "images\/get_started32.png", "48": "images\/get_started48.png", "128": "images\/get_started128.png" }, "icons": { "16": "images\/get_started16.png", "32": "images\/get_started32.png", "48": "images\/get_started48.png", "128": "images\/get_started128.png" }, "manifest_version": 2 } |