Youtube Longs

Shows gameplay footage under Youtube videos.

Youtube Longsคืออะไร?

Youtube Longs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย simc.sambolec และคุณลักษณะหลักของมันคือ "Shows gameplay footage under Youtube videos."

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

screenshot

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

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

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

                        Do you need overstimulation? This extension adds random gameplay footage under Youtube videos that you are watching to keep you entertained!                    

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

ชื่อ Youtube Longs Youtube Longs
ID inajamlogoahnbliabnogbcomnbiefbb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/youtube-longs/inajamlogoahnbliabnogbcomnbiefbb
คำอธิบาย Shows gameplay footage under Youtube videos.
ขนาดไฟล์ 22.01 KB
จำนวนการติดตั้ง 1,935
เวอร์ชันปัจจุบัน 1.1.2
อัปเดตครั้งล่าสุด 2023-03-26
วันที่เผยแพร่ 2023-02-23
คะแนน 4.07/5 รวมทั้งหมด 27 คะแนน
ผู้พัฒนา simc.sambolec
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Youtube Longs",
    "description": "Shows gameplay footage under Youtube videos.",
    "version": "1.1.2",
    "action": {
        "default_popup": "index.html"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "js": [
                "js\/functions.js",
                "js\/insertVideo.js"
            ],
            "css": [
                "css\/embeded.css"
            ],
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "yt_longs.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "default_locale": "en",
    "web_accessible_resources": [
        {
            "resources": [
                "css\/width-fix.css"
            ],
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ]
        }
    ]
}