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