YouTube Shorts Remover
Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.
YouTube Shorts Removerคืออะไร?
YouTube Shorts Remover เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://zalwicker.dev และคุณลักษณะหลักของมันคือ "Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Shorts Remover
ดาวน์โหลดไฟล์ส่วนขยาย YouTube Shorts Remover ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Removes YouTube shorts so your subscription feed only shows long-form videos. Also has the ability to remove upcoming videos, mixes, watched videos, and other annoying things on YouTube. I just want to watch regular videos, and now you can too!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | YouTube Shorts Remover |
ID | aefjgmckfgndnaopgholfhdabghaoajg |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/youtube-shorts-remover/aefjgmckfgndnaopgholfhdabghaoajg |
คำอธิบาย | Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch. |
ขนาดไฟล์ | 20.47 KB |
จำนวนการติดตั้ง | 865 |
เวอร์ชันปัจจุบัน | 1.2 |
อัปเดตครั้งล่าสุด | 2023-06-11 |
วันที่เผยแพร่ | 2022-12-06 |
คะแนน | 3.73/5 รวมทั้งหมด 15 คะแนน |
ผู้พัฒนา | http://zalwicker.dev |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://www.zalwicker.dev/projects |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Shorts Remover", "version": "1.2", "description": "Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.", "icons": { "32": "images\/noshorts32.png", "48": "images\/noshorts48.png", "128": "images\/noshorts128.png" }, "content_scripts": [ { "js": [ "scripts\/content.js" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ], "background": { "service_worker": "scripts\/background.js", "type": "module" }, "web_accessible_resources": [ { "resources": [ "images\/*" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ], "action": { "default_popup": "views\/settings.html" }, "permissions": [ "storage" ] } |