remove YouTube TV button
removes 'play on TV' button on YouTube
remove YouTube TV buttonคืออะไร?
remove YouTube TV button เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sveagruva และคุณลักษณะหลักของมันคือ "removes 'play on TV' button on YouTube"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย remove YouTube TV button
ดาวน์โหลดไฟล์ส่วนขยาย remove YouTube TV button ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
'play on TV' button is annoying element of YouTube and also is kind of dangerous. You no longer need to worry about accidentally pressing that button because it doesn't exist anymore after installing this extension. ============== 0.1.3 update fixes 'play on TV' button for youtube redesign clicking no longer disables extension. if you see green checkmark it will perform same action as it did in 0.1.2.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | remove YouTube TV button |
ID | lcblinegofgihklfnclgedlfcolbacpl |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/remove-youtube-tv-button/lcblinegofgihklfnclgedlfcolbacpl |
คำอธิบาย | removes 'play on TV' button on YouTube |
ขนาดไฟล์ | 27.89 KB |
จำนวนการติดตั้ง | 3,748 |
เวอร์ชันปัจจุบัน | 0.1.3 |
อัปเดตครั้งล่าสุด | 2022-11-09 |
วันที่เผยแพร่ | 2020-12-15 |
คะแนน | 4.91/5 รวมทั้งหมด 56 คะแนน |
ผู้พัฒนา | Sveagruva |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/sveagruva/remove_youtube_tv_button |
ภาษาที่รองรับ | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "0.1.3", "name": "__MSG_name__", "description": "__MSG_app_description__", "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "main.js" ], "css": [ "style.css" ], "run_at": "document_end", "all_frames": true } ], "icons": { "16": "icons\/16_disabled.png", "48": "icons\/48_disabled.png", "128": "icons\/128_disabled.png" }, "permissions": [ "storage" ], "background": { "scripts": [ "background.js" ] }, "default_locale": "en", "homepage_url": "https:\/\/github.com\/sveagruva\/remove_youtube_tv_button", "browser_action": { "default_icon": { "16": "icons\/16_disabled.png", "48": "icons\/48_disabled.png", "128": "icons\/128_disabled.png" } } } |