YouTube Swapper

Experience YouTube uncensored

O que é YouTube Swapper?

YouTube Swapper é uma extensão do Chrome desenvolvida por trumpet63dev, e sua principal característica é "Experience YouTube uncensored".

Capturas de Tela da Extensão

Baixar o arquivo CRX da Extensão YouTube Swapper

Baixe arquivos de extensão YouTube Swapper no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome YouTube Swapper YouTube Swapper
ID efnnmdenikblgpialbdpalghhdokacaj
URL Oficial https://chromewebstore.google.com/detail/youtube-swapper/efnnmdenikblgpialbdpalghhdokacaj
Descrição Experience YouTube uncensored
Tamanho do Arquivo 11.58 KB
Contagem de Instalações 450
Versão Atual Alpha 1.0
Última Atualização 2019-12-29
Data de Publicação 2019-12-29
Classificação 4.25/5 Total de 4 Avaliações
Desenvolvedor trumpet63dev
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}