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. 擴展基本資訊
| 名稱 | |
| ID | efnnmdenikblgpialbdpalghhdokacaj |
| 官方網址 | 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"
]
} | |