Video Tool
Add loop play function to any html5 video and other tweaks for video playing.
Video Tool란 무엇입니까?
Video Tool은(는) SAGAN에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add loop play function to any html5 video and other tweaks for video playing."입니다.
Video Tool 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Video playing enhancement extension. It should work on any website that is using HTML5 video player. Features * Loop play the video of any web page. * Show current time in page title when playing video.
확장 프로그램 기본 정보
이름 | ![]() |
ID | fnapgmcbpehohbcjpfdoaiokmmgfnnkn |
공식 URL | https://chrome.google.com/webstore/detail/video-tool/fnapgmcbpehohbcjpfdoaiokmmgfnnkn |
설명 | Add loop play function to any html5 video and other tweaks for video playing. |
파일 크기 | 8.31 KB |
설치 횟수 | 4,000 |
현재 버전 | 1.0.1 |
최근 업데이트 | 2018-02-11 |
출시 날짜 | 2018-02-11 |
개발자 | SAGAN |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/sagan/chrome-extension-video-tool |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Video Tool", "description": "Add loop play function to any html5 video and other tweaks for video playing.", "version": "1.0.1", "author": "Jacques De SAGAN", "manifest_version": 2, "permissions": [ "tabs", "storage" ], "browser_action": { "default_title": "Video Tool", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "js": [ "content.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start", "all_frames": false }, { "js": [ "fucknicovideo.js" ], "matches": [ "http:\/\/www.nicovideo.jp\/watch\/sm*", "https:\/\/www.nicovideo.jp\/watch\/sm*" ], "run_at": "document_start", "all_frames": false } ] } |