Reverse Youtube

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

Reverse Youtube là gì?

Reverse Youtube là một tiện ích mở rộng Chrome được phát triển bởi https://citadelle-du-web.com, và tính năng chính của nó là "Made to avoid torticollis while using a secondary screen. This extension swaps 'primary video' and 'related contents' layouts.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Reverse Youtube

Tải xuống các tệp mở rộng Reverse Youtube dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Reverse Youtube Reverse Youtube
ID bbkebkkkocmacciojigkliggadljbmai
URL Chính Thức https://chromewebstore.google.com/detail/reverse-youtube/bbkebkkkocmacciojigkliggadljbmai
Mô tả Made to avoid torticollis while using a secondary screen. This extension swaps 'primary video' and 'related contents' layouts.
Kích Thước Tệp 53.5 KB
Số Lần Cài Đặt 583
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2021-03-05
Ngày Phát Hành 2021-03-04
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://citadelle-du-web.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://citadelle-du-web.com/projects/reverse-youtube
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}