vtkkMutiSub
a chrome extension allow you to add secondary subtitle on KKTV.
vtkkMutiSub란 무엇입니까?
vtkkMutiSub은(는) king4sam990816에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "a chrome extension allow you to add secondary subtitle on KKTV."입니다.
확장 프로그램 스크린샷
vtkkMutiSub 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
a chrome extension allow you to add secondary subtitle on KKTV. KKTV 雙字幕擴充功能 特色 - 整合 kktv 原生選單 - 使用 kktv 所提供之字幕(但我只有看到有日語的) 使用方法 安裝擴充功能後播放影片,靜待幾秒後等字幕下載完畢後就可以點選字幕選單 source code https://github.com/king4sam/vtkkMutiSub
확장 프로그램 기본 정보
이름 | vtkkMutiSub |
ID | flnfnhglpndakhaiipkidmokjhnegjig |
공식 URL | https://chromewebstore.google.com/detail/vtkkmutisub/flnfnhglpndakhaiipkidmokjhnegjig |
설명 | a chrome extension allow you to add secondary subtitle on KKTV. |
파일 크기 | 45.9 KB |
설치 횟수 | 607 |
현재 버전 | 1.2.1 |
최근 업데이트 | 2019-04-17 |
출시 날짜 | 2019-04-17 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | king4sam990816 |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en,zh-TW |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "vtkkMutiSub", "description": "a chrome extension allow you to add secondary subtitle on KKTV.", "version": "1.2.1", "default_locale": "zh_TW", "minimum_chrome_version": "49", "icons": { "16": "icons\/kk16.png", "32": "icons\/kk32.png", "48": "icons\/kk48.png", "128": "icons\/kk128.png" }, "page_action": { "default_popup": "popups\/default.html", "default_icon": { "16": "icons\/kk16.png", "32": "icons\/kk32.png", "48": "icons\/kk48.png", "128": "icons\/kk128.png" } }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "background": { "scripts": [ "build\/background.js" ], "persistent": false }, "permissions": [ "https:\/\/www.kktv.me\/*", "declarativeContent", "tabs" ], "content_scripts": [ { "matches": [ "https:\/\/www.kktv.me\/*" ], "js": [ "build\/inject.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/www.kktv.me\/*" ], "js": [ "build\/contentscript.js" ], "run_at": "document_end" } ] } |