YouTube Swapper
Experience YouTube uncensored
What is YouTube Swapper?
YouTube Swapper is a Chrome extension developed by trumpet63dev, and its main feature is "Experience YouTube uncensored".
Extension Screenshots
Download YouTube Swapper Extension CRX File
Download YouTube Swapper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | YouTube Swapper |
ID | efnnmdenikblgpialbdpalghhdokacaj |
Official URL | https://chromewebstore.google.com/detail/youtube-swapper/efnnmdenikblgpialbdpalghhdokacaj |
Description | Experience YouTube uncensored |
File Size | 11.58 KB |
Installation Count | 450 |
Current Version | Alpha 1.0 |
Last Updated | 2019-12-29 |
Publish Date | 2019-12-29 |
Rating | 4.25/5 Total 4 Ratings |
Developer | trumpet63dev |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } |