Block Shorts - No more unwanted Shorts
Remove Shorts from your YouTube desktop experience.
Block Shorts - No more unwanted Shortsคืออะไร?
Block Shorts - No more unwanted Shorts เป็นส่วนขยายของ Chrome ที่พัฒนาโดย arthur.joppart และคุณลักษณะหลักของมันคือ "Remove Shorts from your YouTube desktop experience."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Block Shorts - No more unwanted Shorts
ดาวน์โหลดไฟล์ส่วนขยาย Block Shorts - No more unwanted Shorts ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension gives you the possibility to hide all unwanted YouTube Shorts by simply flipping a switch on the top of the page. ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | adbkiegjafadlmleigmjongmcadeghmo |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/block-shorts-no-more-unwa/adbkiegjafadlmleigmjongmcadeghmo |
| คำอธิบาย | Remove Shorts from your YouTube desktop experience. |
| ขนาดไฟล์ | 9.61 KB |
| จำนวนการติดตั้ง | 64 |
| เวอร์ชันปัจจุบัน | 1.4 |
| อัปเดตครั้งล่าสุด | 2023-06-13 |
| วันที่เผยแพร่ | 2022-10-26 |
| คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
| ผู้พัฒนา | arthur.joppart |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://github.com/BelgianNoise/remove-yt-shorts-chrome-extension |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Block Shorts - No more unwanted Shorts",
"version": "1.4",
"manifest_version": 3,
"description": "Remove Shorts from your YouTube desktop experience.",
"permissions": [],
"icons": {
"128": "128.png"
},
"content_scripts": [
{
"run_at": "document_idle",
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"script.js"
],
"css": [
"style.css"
]
}
]
} | |