Video Tool
Add loop play function to any html5 video and other tweaks for video playing.
Hvad er Video Tool?
Video Tool er en Chrome-udvidelse udviklet af SAGAN, og dens hovedfunktion er "Add loop play function to any html5 video and other tweaks for video playing.".
Download Video Tool-udvidelses-CRX-fil
Download Video Tool-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | fnapgmcbpehohbcjpfdoaiokmmgfnnkn |
| Officiel URL | https://chrome.google.com/webstore/detail/video-tool/fnapgmcbpehohbcjpfdoaiokmmgfnnkn |
| Beskrivelse | Add loop play function to any html5 video and other tweaks for video playing. |
| Filstørrelse | 8.31 KB |
| Antal Installationer | 4,000 |
| Nuværende Version | 1.0.1 |
| Senest Opdateret | 2018-02-11 |
| Udgivelsesdato | 2018-02-11 |
| Udvikler | SAGAN |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/sagan/chrome-extension-video-tool |
| Understøttede Sprog | 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
}
]
} | |