YouTube Swapper
Experience YouTube uncensored
YouTube Swapper란 무엇입니까?
YouTube Swapper은(는) trumpet63dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Experience YouTube uncensored"입니다.
확장 프로그램 스크린샷
YouTube Swapper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |