CleanTube
YouTube with less clutter.
CleanTubeคืออะไร?
CleanTube เป็นส่วนขยายของ Chrome ที่พัฒนาโดย elliotwaite และคุณลักษณะหลักของมันคือ "YouTube with less clutter."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย CleanTube
ดาวน์โหลดไฟล์ส่วนขยาย CleanTube ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension hides the following YouTube elements: • The row of recommended videos that appear when a video is paused. • The wall of recommended videos that appear at the end of a video. • Channel watermark logos that appear in the bottom right of videos. • The "Watch later" and "Add to queue" icon buttons that appear over the top right of thumbnails when they are hovered over. This extension is open source on GitHub. If you find any bugs or have any suggestions, please open an issue here: https://github.com/elliotwaite/cleantube Thanks. Enjoy!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | CleanTube |
ID | kanfjhdeebkfgkbmnfknhejpadhlmiab |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/cleantube/kanfjhdeebkfgkbmnfknhejpadhlmiab |
คำอธิบาย | YouTube with less clutter. |
ขนาดไฟล์ | 8.85 KB |
จำนวนการติดตั้ง | 1,633 |
เวอร์ชันปัจจุบัน | 0.4 |
อัปเดตครั้งล่าสุด | 2023-08-01 |
วันที่เผยแพร่ | 2021-06-29 |
คะแนน | 3.80/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | elliotwaite |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/elliotwaite/cleantube |
URL หน้าช่วยเหลือ | https://github.com/elliotwaite/cleantube |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CleanTube", "version": "0.4", "description": "YouTube with less clutter.", "author": "Elliot Waite", "icons": { "128": "icon128.png" }, "browser_action": { "default_icon": "icon128.png", "default_title": "Options", "default_popup": "options.html" }, "options_ui": { "page": "options.html", "chrome_style": false }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*", "*:\/\/*.youtube-nocookie.com\/*" ], "js": [ "content.js" ], "all_frames": true } ], "permissions": [ "*:\/\/*.youtube.com\/*", "*:\/\/*.youtube-nocookie.com\/*", "storage" ] } |