YouTube Liberation: Anti-Distraction Skin
Chrome extension to liberate you from the infinite distraction cycle of YouTube.
YouTube Liberation: Anti-Distraction Skinคืออะไร?
YouTube Liberation: Anti-Distraction Skin เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Samson Zhang และคุณลักษณะหลักของมันคือ "Chrome extension to liberate you from the infinite distraction cycle of YouTube."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Liberation: Anti-Distraction Skin
ดาวน์โหลดไฟล์ส่วนขยาย YouTube Liberation: Anti-Distraction Skin ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Like other social media platforms, YouTube is very good at showing you content that you want to watch but weren't planning to or looking for, making it super easy to get distracted and get sucked into one video after another and suddenly lose an hour of your day. Yet there are so many valuable resources and videos that you can't find elsewhere: tutorials, event coverage, specific creators you subscribe to who you know always publish high-quality content worth watching. For many of us, the value of YouTube makes it worth the sacrifice of even its most distracting possibilities, and it's impossible to just cut away. What if it didn't have to be this way? What if you could have the good of YouTube, see the content you want to see, without the platform constantly trying to drag your attention through an endless stream of productivity-draining drudgery? This is the philosophy behind YouTube Liberation. It's time to rise up, lose your chains, and join us as we march our way towards a better YouTube! YouTube Liberation works by hiding elements that lead you towards new content you don't intend to see, without compromising any core viewing features. These elements include: - The entire home page of alg-generated recommendations - Video recommendations on watch pages - Comments sections on watch pages - Extraneous UI elements, replacing the full sidebar with a much more minimal one and removing most topbar buttons YouTube liberation does not at all compromise: - Subscriptions and trending pages - Channel pages - Playlists - Video stats, description, etc. What are considered vital core features and what are considered distracting elements varies from use case to use case and person to person. For certain kinds of videos, comments might be more constructive than distracting. For creators, notifications and easy access to uploading might be important (though that's why YouTube Studio exists...). Thus, one feature I'm working on adding right now is the ability to customize what gets hidden and what is shown, with a recommended configuration as it is right now.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | YouTube Liberation: Anti-Distraction Skin |
ID | akmmhbokbfhghenajahbcmogcbghiamg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youtube-liberation-anti-d/akmmhbokbfhghenajahbcmogcbghiamg |
คำอธิบาย | Chrome extension to liberate you from the infinite distraction cycle of YouTube. |
ขนาดไฟล์ | 32.06 KB |
จำนวนการติดตั้ง | 791 |
เวอร์ชันปัจจุบัน | 0.2.0 |
อัปเดตครั้งล่าสุด | 2023-05-06 |
วันที่เผยแพร่ | 2020-04-05 |
คะแนน | 4.69/5 รวมทั้งหมด 32 คะแนน |
ผู้พัฒนา | Samson Zhang |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/wwsalmon/youtube-liberation |
URL หน้าช่วยเหลือ | https://github.com/wwsalmon/youtube-liberation |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "icons": { "48": "icon-48.png", "128": "icon-128.png", "256": "icon-256.png" }, "manifest_version": 3, "name": "YouTube Liberation: Anti-Distraction Skin", "version": "0.2.0", "description": "Chrome extension to liberate you from the infinite distraction cycle of YouTube.", "content_scripts": [ { "css": [ "style.css" ], "js": [ "arrive.min.js", "content.js" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ], "action": { "default_popup": "popup.html", "default_icon": { "48": "icon-48.png", "128": "icon-128.png", "256": "icon-256.png" } }, "web_accessible_resources": [ { "resources": [ "icon-256.png" ], "matches": [ "*:\/\/*\/*" ] } ], "permissions": [ "storage" ] } |