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文件
下載Video Tool擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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 } ] } |