YouTube Swapper
Experience YouTube uncensored
什么是YouTube Swapper?
YouTube Swapper是由trumpet63dev开发的Chrome扩展程序,该扩展的主要功能是“Experience YouTube uncensored”。
扩展截图
下载YouTube Swapper扩展crx文件
下载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 |
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" ] } |