YouTube Swapper

Experience YouTube uncensored

ما هو YouTube Swapper؟

YouTube Swapper هو إضافة Chrome تم تطويرها بواسطة trumpet63dev، والميزة الرئيسية لها هي "Experience YouTube uncensored".

لقطات شاشة التمديد

تحميل ملف CRX للإضافة YouTube Swapper

قم بتنزيل ملفات الامتداد YouTube Swapper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    ]
}