Caffeine TV Controller
Allows you to chat in full-screen, adds a volume controller to the player, a nice dark theme and several other features
Caffeine TV Controller란 무엇입니까?
Caffeine TV Controller은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows you to chat in full-screen, adds a volume controller to the player, a nice dark theme and several other features"입니다.
확장 프로그램 스크린샷
Caffeine TV Controller 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Allows you to chat in full-screen, adds a volume controller to the player, a nice dark theme and several other features to the Caffeine.TV website. Developed by: LordRampantHump & RmXShooT
확장 프로그램 기본 정보
이름 | Caffeine TV Controller |
ID | dbajgbdeadgdoeoolfaaomdgnebkalbj |
공식 URL | https://chromewebstore.google.com/detail/caffeine-tv-controller/dbajgbdeadgdoeoolfaaomdgnebkalbj |
설명 | Allows you to chat in full-screen, adds a volume controller to the player, a nice dark theme and several other features |
파일 크기 | 111 KB |
설치 횟수 | 26 |
현재 버전 | 2.0 |
최근 업데이트 | 2017-12-07 |
출시 날짜 | 2017-12-06 |
평점 | 4.93/5 총 15 개의 평점 |
개발자 | Unknown |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Caffeine TV Controller", "short_name": "Caffeine TV Controller", "version": "2.0", "manifest_version": 2, "description": "Allows you to chat in full-screen, adds a volume controller to the player, a nice dark theme and several other features", "author": "LordRampantHump & RmXShooT", "icons": { "16": "images\/icons\/icon16.png", "32": "images\/icons\/icon32.png", "48": "images\/icons\/icon48.png", "128": "images\/icons\/icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_title": "Caffeine TV Controller", "default_popup": "pages\/popup.html" }, "content_scripts": [ { "all_frames": true, "css": [ "styles\/fix.css" ], "match_about_blank": true, "matches": [ "https:\/\/www.caffeine.tv\/*" ], "run_at": "document_end" } ], "permissions": [ "https:\/\/www.caffeine.tv\/*", "tabs", "storage" ], "storage": { "managed_schema": "managed-storage-schema.json" } } |