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 |
Eメール | [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" ] } |