Youtube Customiser
Add and remove Youtube content panels as you wish.
Youtube Customiserคืออะไร?
Youtube Customiser เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Erlend Eelmets และคุณลักษณะหลักของมันคือ "Add and remove Youtube content panels as you wish."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube Customiser
ดาวน์โหลดไฟล์ส่วนขยาย Youtube Customiser ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Add and remove Youtube content panels as you wish. Does the merchandise bar annoy you? Remove it? Do you want to stop spending time on youtube rabbit holes? Disable video suggestions. Do you judge a video too much based on it's numbers? Disable the numbers.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Youtube Customiser |
ID | jlcpaifegmmdaiafenaeajnkbclgikhp |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youtube-customiser/jlcpaifegmmdaiafenaeajnkbclgikhp |
คำอธิบาย | Add and remove Youtube content panels as you wish. |
ขนาดไฟล์ | 752 KB |
จำนวนการติดตั้ง | 12 |
เวอร์ชันปัจจุบัน | 0.0.2 |
อัปเดตครั้งล่าสุด | 2020-11-11 |
วันที่เผยแพร่ | 2020-11-11 |
ผู้พัฒนา | Erlend Eelmets |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "0.0.2", "short_name": "Youtube Custom", "name": "Youtube Customiser", "description": "Add and remove Youtube content panels as you wish.", "browser_action": { "default_title": "Youtube Customiser", "default_popup": "popup.html" }, "background": { "scripts": [ "background.bundle.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "js": [ "contentScript.bundle.js" ] } ], "icons": { "22": "img\/icon-22.png", "48": "img\/icon-48.png", "128": "img\/icon-128.png" }, "permissions": [ "storage" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';" } |