No Shorts

Redirects YouTube Shorts to YouTube videos.

No Shortsคืออะไร?

No Shorts เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Wock และคุณลักษณะหลักของมันคือ "Redirects YouTube Shorts to YouTube videos."

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

screenshot

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

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

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

                        An extension that redirects YouTube short player urls to the normal YouTube player.
I created this extension for my own use, as being unable to navigate short videos irritated me, and decided to publish it.

It does one job, and only one job.
The only permission it needs is tabs, to handle YouTube onsite redirects.                    

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

ชื่อ No Shorts No Shorts
ID gepjlgfjbeimidbimhjljdncopgelebl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/no-shorts/gepjlgfjbeimidbimhjljdncopgelebl
คำอธิบาย Redirects YouTube Shorts to YouTube videos.
ขนาดไฟล์ 12.74 KB
จำนวนการติดตั้ง 117
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2022-10-27
วันที่เผยแพร่ 2022-10-26
คะแนน 4.20/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา Wock
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "No Shorts",
    "version": "1.0",
    "description": "Redirects YouTube Shorts to YouTube videos.",
    "permissions": [
        "tabs"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_popup": "popup.html"
    }
}