Video Tool
Add loop play function to any html5 video and other tweaks for video playing.
Cos'è Video Tool?
Video Tool è un'estensione di Chrome sviluppata da SAGAN, e la sua funzione principale è "Add loop play function to any html5 video and other tweaks for video playing.".
Scarica il file CRX dell'estensione Video Tool
Scarica i file di estensione Video Tool in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | ![]() |
ID | fnapgmcbpehohbcjpfdoaiokmmgfnnkn |
URL Ufficiale | https://chrome.google.com/webstore/detail/video-tool/fnapgmcbpehohbcjpfdoaiokmmgfnnkn |
Descrizione | Add loop play function to any html5 video and other tweaks for video playing. |
Dimensione del File | 8.31 KB |
Conteggio Installazioni | 4,000 |
Versione Corrente | 1.0.1 |
Ultimo Aggiornamento | 2018-02-11 |
Data di Pubblicazione | 2018-02-11 |
Sviluppatore | SAGAN |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/sagan/chrome-extension-video-tool |
Lingue Supportate | 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 } ] } |