Maximize Video
Maximize HTML5/Flash video and fill current tab.
Maximize Video란 무엇입니까?
Maximize Video은(는) ettoolong에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Maximize HTML5/Flash video and fill current tab."입니다.
확장 프로그램 스크린샷
Maximize Video 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Usage: 1. Click on toolbar button 2. Select video that you want to maximize (you can click toolbar button again to cancel) NOTE !!!!!! 1. This extension only maximize video, it can't remove web advertisements for you. If you need remove web advertisements, you can install other extension to do that. 2. No promise to support EVERY video site. If it can't work on specific web site, report to me: https://github.com/ettoolong/MaximizeVideo/issues I will try to fix it ( if I can).
확장 프로그램 기본 정보
이름 | Maximize Video |
ID | bfpkgjlnboeecjmnbhbknmemmckmpomb |
공식 URL | https://chromewebstore.google.com/detail/maximize-video/bfpkgjlnboeecjmnbhbknmemmckmpomb |
설명 | Maximize HTML5/Flash video and fill current tab. |
파일 크기 | 29.12 KB |
설치 횟수 | 10,000 |
현재 버전 | 0.0.20 |
최근 업데이트 | 2022-01-07 |
출시 날짜 | 2019-12-14 |
평점 | 4.84/5 총 45 개의 평점 |
개발자 | ettoolong |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en,zh-TW |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "__MSG_extDescription__", "manifest_version": 2, "name": "__MSG_extName__", "version": "0.0.20", "homepage_url": "https:\/\/github.com\/ettoolong\/MaximizeVideo", "icons": { "16": "icon\/icon.png", "32": "icon\/icon.png", "48": "icon\/icon.png", "64": "icon\/icon.png", "96": "icon\/icon.png" }, "author": "Ett Chung", "background": { "scripts": [ "js\/background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ], "js": [ "js\/content-script.js" ], "css": [ "css\/maximizeVideo.css" ], "all_frames": true, "run_at": "document_start" }, { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "js\/ytb.js" ], "css": [ "css\/ytb.css" ], "all_frames": false, "run_at": "document_start" } ], "browser_action": { "browser_style": true, "default_title": "__MSG_extDescription__", "default_icon": "icon\/icon_b.png" }, "permissions": [ "storage" ], "default_locale": "en", "options_ui": { "page": "options.html", "open_in_tab": false }, "commands": { "maximizeVideo": { "suggested_key": { "default": "Alt+Shift+M" }, "description": "__MSG_execute__" } } } |