YouTube Swapper

Experience YouTube uncensored

YouTube Swapper là gì?

YouTube Swapper là một tiện ích mở rộng Chrome được phát triển bởi trumpet63dev, và tính năng chính của nó là "Experience YouTube uncensored".

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

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

Tải xuống các tệp mở rộng YouTube Swapper 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

                        Replace whatever YouTube video you're watching with what the creator actually wants you to watch.

If you're a creator, include a line in your YouTube video's description like so:
YouTube Swapper: http://www.example.com/video/link

Only supports links to BitChute and YouTube.

Note: This is something I thought up and programmed in a few days, and as of Dec. 28th 2019 it is brand new, simplistic, and doesn't have many features. It's free an open source. You can find the source code at: https://github.com/Trumpet63/YouTube-Swapper I'm open to feature requests and bug reports.                    

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

Tên YouTube Swapper YouTube Swapper
ID efnnmdenikblgpialbdpalghhdokacaj
URL Chính Thức https://chromewebstore.google.com/detail/youtube-swapper/efnnmdenikblgpialbdpalghhdokacaj
Mô tả Experience YouTube uncensored
Kích Thước Tệp 11.58 KB
Số Lần Cài Đặt 450
Phiên Bản Hiện Tại Alpha 1.0
Cập Nhật Lần Cuối 2019-12-29
Ngày Phát Hành 2019-12-29
Đánh Giá 4.25/5 Tổng số 4 Đánh Giá
Nhà Phát Triển trumpet63dev
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Swapper",
    "description": "Experience YouTube uncensored",
    "version": "0.1",
    "version_name": "Alpha 1.0",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "page_action": {
        "default_icon": "youtube_swapper_icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "content_script.js"
            ]
        }
    ],
    "permissions": [
        "declarativeContent"
    ]
}