Reverse Youtube

Made to avoid torticollis while using a secondary screen. This extension swaps 'primary video' and 'related contents' layouts.

Reverse Youtubeคืออะไร?

Reverse Youtube เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://citadelle-du-web.com และคุณลักษณะหลักของมันคือ "Made to avoid torticollis while using a secondary screen. This extension swaps 'primary video' and 'related contents' layouts."

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

screenshot

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

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

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

                        This extension swaps 'primary video' and 'related contents' layouts in youtube.com                    

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

ชื่อ Reverse Youtube Reverse Youtube
ID bbkebkkkocmacciojigkliggadljbmai
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/reverse-youtube/bbkebkkkocmacciojigkliggadljbmai
คำอธิบาย Made to avoid torticollis while using a secondary screen. This extension swaps 'primary video' and 'related contents' layouts.
ขนาดไฟล์ 53.5 KB
จำนวนการติดตั้ง 583
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2021-03-05
วันที่เผยแพร่ 2021-03-04
คะแนน 3.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา https://citadelle-du-web.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://citadelle-du-web.com/projects/reverse-youtube
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.0",
    "name": "Reverse Youtube",
    "description": "Made to avoid torticollis while using a secondary screen. This extension swaps 'primary video' and 'related contents' layouts.",
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_title": "Reverse Youtube",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/logo-16.png",
            "48": "images\/logo-48.png",
            "128": "images\/logo-128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/logo-16.png",
        "32": "images\/logo-32.png",
        "48": "images\/logo-48.png",
        "128": "images\/logo-128.png"
    }
}