Removes Recommend Videos on Youtube
A distraction free YouTube experience where all the recommend Youtube Videos are removed.
Removes Recommend Videos on Youtubeคืออะไร?
Removes Recommend Videos on Youtube เป็นส่วนขยายของ Chrome ที่พัฒนาโดย YT และคุณลักษณะหลักของมันคือ "A distraction free YouTube experience where all the recommend Youtube Videos are removed."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Removes Recommend Videos on Youtube
ดาวน์โหลดไฟล์ส่วนขยาย Removes Recommend Videos on Youtube ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
⬇️ Easy to set up ⬇️: 1. Install and add the extension to Chrome. 2. If you cannot see the icon, click to the right of the URL bar. Then, click 📌 to pin Unhook. 3. Click on the power button to turn on/off. 4. Choose from the menu what to disable to customize your own YouTube experience. ✨ Features ✨ 1. Ability to turn off end-screen video suggestions, user comments, homepage related videos, feed, trending tab, autoplay or annotations, and more. 2. Compatible with mobile YouTube. 3. Dark mode. Hide distractions related videos, comments, shorts tab, suggestions wall, homepage recommendations, trending, and other while watching a video 🎥 on YouTube.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Removes Recommend Videos on Youtube |
ID | mlaigmdigmkhpbnljmhajhleifegcchb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/removes-recommend-videos/mlaigmdigmkhpbnljmhajhleifegcchb |
คำอธิบาย | A distraction free YouTube experience where all the recommend Youtube Videos are removed. |
ขนาดไฟล์ | 61.1 KB |
จำนวนการติดตั้ง | 43 |
เวอร์ชันปัจจุบัน | 0.0.1 |
อัปเดตครั้งล่าสุด | 2022-12-30 |
วันที่เผยแพร่ | 2022-12-30 |
คะแนน | 4.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | YT |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้านโยบายความเป็นส่วนตัว | https://docs.google.com/document/d/1cwiY1eFhYYDxMRxOSiiuQpgOBJtcaB022bxkF4KvWX0/edit |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.0.1", "manifest_version": 3, "minimum_chrome_version": "90", "name": "Removes Recommend Videos on Youtube", "icons": { "128": "icons\/icon128.png" }, "description": "A distraction free YouTube experience where all the recommend Youtube Videos are removed.", "action": { "default_popup": "popup.html" }, "background": { "service_worker": "js\/background.js" }, "content_scripts": [ { "all_frames": true, "run_at": "document_start", "css": [ "css\/content.css" ], "js": [ "js\/content_script.js" ], "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/m.youtube.com\/*" ] } ], "permissions": [ "storage", "webRequest" ], "host_permissions": [ "https:\/\/www.youtube.com\/*", "https:\/\/m.youtube.com\/*" ], "web_accessible_resources": [ { "resources": [ "js\/youtube.js" ], "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/m.youtube.com\/*" ] } ] } |