Video Tool
Add loop play function to any html5 video and other tweaks for video playing.
Qu'est-ce que Video Tool ?
Video Tool est une extension Chrome développée par SAGAN, et sa fonction principale est "Add loop play function to any html5 video and other tweaks for video playing.".
Télécharger le fichier CRX de l'extension Video Tool
Téléchargez les fichiers d'extension Video Tool au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | ![]() |
ID | fnapgmcbpehohbcjpfdoaiokmmgfnnkn |
URL Officiel | https://chrome.google.com/webstore/detail/video-tool/fnapgmcbpehohbcjpfdoaiokmmgfnnkn |
Description | Add loop play function to any html5 video and other tweaks for video playing. |
Taille du Fichier | 8.31 KB |
Nombre d'Installations | 4,000 |
Version Actuelle | 1.0.1 |
Dernière Mise à Jour | 2018-02-11 |
Date de Publication | 2018-02-11 |
Développeur | SAGAN |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/sagan/chrome-extension-video-tool |
Langues Prises en Charge | 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 } ] } |