YouTube Watch Later Cleaner
A simple Chrome extension to clear down a cluttered YouTube's Watch Later list.
YouTube Watch Later Cleanerคืออะไร?
YouTube Watch Later Cleaner เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://rickblyth.com และคุณลักษณะหลักของมันคือ "A simple Chrome extension to clear down a cluttered YouTube's Watch Later list."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Watch Later Cleaner
ดาวน์โหลดไฟล์ส่วนขยาย YouTube Watch Later Cleaner ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
⚡ YouTube Watch Later Cleaner ⚡
Tired of constantly and tediously clicking to clear out your YouTube's Watch Later list? I've been there, and I built this Chrome Extension to help automate it!
With YouTube Watch Later Cleaner, effortlessly declutter your playlist in no time. Simply head over to YouTube's Watch Later list at https://www.youtube.com/playlist?list=WL and kick back as this extension does all the heavy lifting for you.
👉 Full Control at Your Fingertips!
Whether you wish to clear out a few videos or spring-clean the entire list, the choice is yours! Start or stop the cleanup process as you desire, ensuring you have complete control over your Watch Later experience.
🙌 Your Feedback Fuels Me! 🙌
If my extension brings a sigh of relief to your browsing routine, all I ask for is a review. Your feedback helps me improve and serve more users like you.
So .... say goodbye to tedious manual clear-outs and elevate your YouTube experience with YouTube Watch Later Cleaner! ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | ammpipkidminighginhepkgnmiojgbjp |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youtube-watch-later-clean/ammpipkidminighginhepkgnmiojgbjp |
| คำอธิบาย | A simple Chrome extension to clear down a cluttered YouTube's Watch Later list. |
| ขนาดไฟล์ | 9.52 KB |
| จำนวนการติดตั้ง | 125 |
| เวอร์ชันปัจจุบัน | 1.1 |
| อัปเดตครั้งล่าสุด | 2023-08-25 |
| วันที่เผยแพร่ | 2023-08-25 |
| คะแนน | 3.75/5 รวมทั้งหมด 4 คะแนน |
| ผู้พัฒนา | https://rickblyth.com |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "YouTube Watch Later Cleaner",
"version": "1.1",
"description": "A simple Chrome extension to clear down a cluttered YouTube's Watch Later list.",
"icons": {
"128": "icon.png"
},
"action": {
"default_popup": ""
},
"background": {
"service_worker": "service_worker.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/www.youtube.com\/playlist?list=WL*"
],
"js": [
"contentscript.js"
],
"css": [
"contentstyles.css"
]
}
]
} | |