Video Tool
Add loop play function to any html5 video and other tweaks for video playing.
What is Video Tool?
Video Tool is a Chrome extension developed by SAGAN, and its main feature is "Add loop play function to any html5 video and other tweaks for video playing.".
Download Video Tool Extension CRX File
Download Video Tool extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | ![]() |
ID | fnapgmcbpehohbcjpfdoaiokmmgfnnkn |
Official URL | https://chrome.google.com/webstore/detail/video-tool/fnapgmcbpehohbcjpfdoaiokmmgfnnkn |
Description | Add loop play function to any html5 video and other tweaks for video playing. |
File Size | 8.31 KB |
Installation Count | 4,000 |
Current Version | 1.0.1 |
Last Updated | 2018-02-11 |
Publish Date | 2018-02-11 |
Developer | SAGAN |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/sagan/chrome-extension-video-tool |
Supported Languages | 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 } ] } |