Video Tool
Add loop play function to any html5 video and other tweaks for video playing.
O que é Video Tool?
Video Tool é uma extensão do Chrome desenvolvida por SAGAN, e sua principal característica é "Add loop play function to any html5 video and other tweaks for video playing.".
Baixar o arquivo CRX da Extensão Video Tool
Baixe arquivos de extensão Video Tool no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | ![]() |
ID | fnapgmcbpehohbcjpfdoaiokmmgfnnkn |
URL Oficial | https://chrome.google.com/webstore/detail/video-tool/fnapgmcbpehohbcjpfdoaiokmmgfnnkn |
Descrição | Add loop play function to any html5 video and other tweaks for video playing. |
Tamanho do Arquivo | 8.31 KB |
Contagem de Instalações | 4,000 |
Versão Atual | 1.0.1 |
Última Atualização | 2018-02-11 |
Data de Publicação | 2018-02-11 |
Desenvolvedor | SAGAN |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/sagan/chrome-extension-video-tool |
Idiomas Suportados | 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 } ] } |