Focused Youtube
Open source extension that removes comments/recommendations from Youtube: https://github.com/makaroni4/focused_youtube
Focused Youtubeคืออะไร?
Focused Youtube เป็นส่วนขยายของ Chrome ที่พัฒนาโดย makaroni4 และคุณลักษณะหลักของมันคือ "Open source extension that removes comments/recommendations from Youtube: https://github.com/makaroni4/focused_youtube"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Focused Youtube
ดาวน์โหลดไฟล์ส่วนขยาย Focused Youtube ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This is an open-source extension that changes homepage of Youtube (only search bar) and drops recommendations/comments from other pages. Extension requires access to Youtube website to change its outlook. Extension icon opens a popup with an option to show/hide the comments section of a video (to check timestamps in comments, for example). Enjoy <3 Important: the extension doesn't collect any data about Youtube usage.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Focused Youtube |
ID | nfghbmabdoakhobmimnjkamfdnpfammn |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/focused-youtube/nfghbmabdoakhobmimnjkamfdnpfammn |
คำอธิบาย | Open source extension that removes comments/recommendations from Youtube: https://github.com/makaroni4/focused_youtube |
ขนาดไฟล์ | 170 KB |
จำนวนการติดตั้ง | 4,232 |
เวอร์ชันปัจจุบัน | 1.12 |
อัปเดตครั้งล่าสุด | 2024-01-27 |
วันที่เผยแพร่ | 2019-01-06 |
คะแนน | 4.88/5 รวมทั้งหมด 72 คะแนน |
ผู้พัฒนา | makaroni4 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/makaroni4/focused_youtube |
URL หน้าช่วยเหลือ | https://github.com/makaroni4/focused_youtube/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Focused Youtube", "description": "Open source extension that removes comments\/recommendations from Youtube: https:\/\/github.com\/makaroni4\/focused_youtube", "version": "1.12", "author": "Anatoli Makarevich", "icons": { "128": "extension_icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/m.youtube.com\/*" ], "js": [ "assets\/extension.js" ], "css": [ "assets\/extension.css" ], "run_at": "document_end", "all_frames": true } ], "action": { "default_popup": "popup.html" }, "host_permissions": [ "https:\/\/www.youtube.com\/*", "https:\/\/m.youtube.com\/*" ], "permissions": [ "storage" ], "web_accessible_resources": [ { "resources": [ "fonts\/Roboto-Regular.ttf", "assets\/popup.js", "assets\/popup.css", "images\/search_icon.svg", "images\/youtube_logo.png", "images\/search_icon_dark.svg", "images\/youtube_logo_dark.png", "images\/extension_icon.png" ], "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/m.youtube.com\/*" ] } ] } |