No YouTube Shorts

Removes all Shorts from YouTube

No YouTube Shortsคืออะไร?

No YouTube Shorts เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ben และคุณลักษณะหลักของมันคือ "Removes all Shorts from YouTube"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย No YouTube Shorts

ดาวน์โหลดไฟล์ส่วนขยาย No YouTube Shorts ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Tired of the YouTube Shorts?
No problem, this extension has your back and removes them from the YouTube page!

New in version 0.6.2:
- Bugfixes

Bugs? Improvement ideas? Feel free to message me.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ No YouTube Shorts No YouTube Shorts
ID hjfkenebldkfgibelglepinlabpjfbll
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/no-youtube-shorts/hjfkenebldkfgibelglepinlabpjfbll
คำอธิบาย Removes all Shorts from YouTube
ขนาดไฟล์ 37.34 KB
จำนวนการติดตั้ง 60,000
เวอร์ชันปัจจุบัน 0.6.2
อัปเดตครั้งล่าสุด 2023-09-27
วันที่เผยแพร่ 2022-03-03
คะแนน 4.31/5 รวมทั้งหมด 240 คะแนน
ผู้พัฒนา Ben
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "No YouTube Shorts",
    "description": "Removes all Shorts from YouTube",
    "version": "0.6.2",
    "action": {
        "default_popup": "popup.html",
        "default_title": "No YouTube Shorts"
    },
    "manifest_version": 3,
    "default_locale": "en",
    "permissions": [
        "declarativeContent",
        "storage",
        "tabs",
        "management"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "no-youtube-shorts-content-script.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "background": {
        "service_worker": "no-youtube-shorts-background-script.js"
    },
    "icons": {
        "48": "assets\/img\/logo48.png",
        "128": "assets\/img\/logo128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/no-youtube-shorts.css"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        }
    ]
}