YouTube Swapper

Experience YouTube uncensored

Was ist YouTube Swapper?

YouTube Swapper ist eine Chrome-Erweiterung, die von trumpet63dev entwickelt wurde, und ihr Hauptmerkmal ist "Experience YouTube uncensored".

Erweiterungsscreenshots

YouTube Swapper-Erweiterungs-CRX-Datei herunterladen

Laden Sie YouTube Swapper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name YouTube Swapper YouTube Swapper
ID efnnmdenikblgpialbdpalghhdokacaj
Offizielle URL https://chromewebstore.google.com/detail/youtube-swapper/efnnmdenikblgpialbdpalghhdokacaj
Beschreibung Experience YouTube uncensored
Dateigröße 11.58 KB
Installationsanzahl 450
Aktuelle Version Alpha 1.0
Letztes Update 2019-12-29
Veröffentlichungsdatum 2019-12-29
Bewertung 4.25/5 Insgesamt 4 Bewertungen
Entwickler trumpet63dev
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}