YouTube Swapper

Experience YouTube uncensored

YouTube Swapperคืออะไร?

YouTube Swapper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย trumpet63dev และคุณลักษณะหลักของมันคือ "Experience YouTube uncensored"

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

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

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

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

                        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.                    

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

ชื่อ YouTube Swapper YouTube Swapper
ID efnnmdenikblgpialbdpalghhdokacaj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/youtube-swapper/efnnmdenikblgpialbdpalghhdokacaj
คำอธิบาย Experience YouTube uncensored
ขนาดไฟล์ 11.58 KB
จำนวนการติดตั้ง 450
เวอร์ชันปัจจุบัน Alpha 1.0
อัปเดตครั้งล่าสุด 2019-12-29
วันที่เผยแพร่ 2019-12-29
คะแนน 4.25/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา trumpet63dev
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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"
    ]
}