YouTube Swapper

Experience YouTube uncensored

Qu'est-ce que YouTube Swapper ?

YouTube Swapper est une extension Chrome développée par trumpet63dev, et sa fonction principale est "Experience YouTube uncensored".

Captures d'Écran de l'Extension

Télécharger le fichier CRX de l'extension YouTube Swapper

Téléchargez les fichiers d'extension YouTube Swapper au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom YouTube Swapper YouTube Swapper
ID efnnmdenikblgpialbdpalghhdokacaj
URL Officiel https://chromewebstore.google.com/detail/youtube-swapper/efnnmdenikblgpialbdpalghhdokacaj
Description Experience YouTube uncensored
Taille du Fichier 11.58 KB
Nombre d'Installations 450
Version Actuelle Alpha 1.0
Dernière Mise à Jour 2019-12-29
Date de Publication 2019-12-29
Évaluation 4.25/5 Total 4 Évaluations
Développeur trumpet63dev
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}