Redirect Shorts

Redirects youtube shorts to the normal player

Redirect Shortsคืออะไร?

Redirect Shorts เป็นส่วนขยายของ Chrome ที่พัฒนาโดย manas.bejj และคุณลักษณะหลักของมันคือ "Redirects youtube shorts to the normal player"

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

screenshot

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

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

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

                        This extension replaces the "/shorts/" from the url with "watch?v=" to play your shorts video on the normal player which is more user friendly on a computer.                    

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

ชื่อ Redirect Shorts Redirect Shorts
ID lncinpfgcgmphkebnbfpogkgiaadphpi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/redirect-shorts/lncinpfgcgmphkebnbfpogkgiaadphpi
คำอธิบาย Redirects youtube shorts to the normal player
ขนาดไฟล์ 32.03 KB
จำนวนการติดตั้ง 2,945
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2022-03-03
วันที่เผยแพร่ 2022-03-03
คะแนน 4.32/5 รวมทั้งหมด 28 คะแนน
ผู้พัฒนา manas.bejj
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Redirect Shorts",
    "version": "1.0",
    "manifest_version": 3,
    "description": "Redirects youtube shorts to the normal player",
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png",
        "256": "256.png"
    },
    "host_permissions": [
        "*:\/\/www.youtube.com\/shorts\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "yt.js"
            ],
            "run_at": "document_start"
        }
    ]
}