Video Tool
Add loop play function to any html5 video and other tweaks for video playing.
Video Tool là gì?
Video Tool là một tiện ích mở rộng Chrome được phát triển bởi SAGAN, và tính năng chính của nó là "Add loop play function to any html5 video and other tweaks for video playing.".
Tải xuống tệp CRX của tiện ích mở rộng Video Tool
Tải xuống các tệp mở rộng Video Tool dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | ![]() |
ID | fnapgmcbpehohbcjpfdoaiokmmgfnnkn |
URL Chính Thức | https://chrome.google.com/webstore/detail/video-tool/fnapgmcbpehohbcjpfdoaiokmmgfnnkn |
Mô tả | Add loop play function to any html5 video and other tweaks for video playing. |
Kích Thước Tệp | 8.31 KB |
Số Lần Cài Đặt | 4,000 |
Phiên Bản Hiện Tại | 1.0.1 |
Cập Nhật Lần Cuối | 2018-02-11 |
Ngày Phát Hành | 2018-02-11 |
Nhà Phát Triển | SAGAN |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/sagan/chrome-extension-video-tool |
Ngôn Ngữ Được Hỗ Trợ | 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 } ] } |