Video Tool
Add loop play function to any html5 video and other tweaks for video playing.
Co to jest Video Tool?
Video Tool to rozszerzenie Chrome opracowane przez SAGAN, a jego główną funkcją jest „Add loop play function to any html5 video and other tweaks for video playing.”.
Pobierz plik CRX rozszerzenia Video Tool
Pobierz pliki rozszerzeń Video Tool w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | ![]() |
ID | fnapgmcbpehohbcjpfdoaiokmmgfnnkn |
Oficjalny URL | https://chrome.google.com/webstore/detail/video-tool/fnapgmcbpehohbcjpfdoaiokmmgfnnkn |
Opis | Add loop play function to any html5 video and other tweaks for video playing. |
Rozmiar pliku | 8.31 KB |
Liczba instalacji | 4,000 |
Aktualna Wersja | 1.0.1 |
Ostatnia Aktualizacja | 2018-02-11 |
Data Publikacji | 2018-02-11 |
Deweloper | SAGAN |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/sagan/chrome-extension-video-tool |
Obsługiwane Języki | 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 } ] } |