Video Tool

Add loop play function to any html5 video and other tweaks for video playing.

Wat is Video Tool?

Video Tool is een Chrome-extensie ontwikkeld door SAGAN, en de belangrijkste functie is "Add loop play function to any html5 video and other tweaks for video playing.".

Download het CRX-bestand van de extensie Video Tool

Download Video Tool-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Video Tool Video Tool
ID fnapgmcbpehohbcjpfdoaiokmmgfnnkn
Officiële URL https://chrome.google.com/webstore/detail/video-tool/fnapgmcbpehohbcjpfdoaiokmmgfnnkn
Beschrijving Add loop play function to any html5 video and other tweaks for video playing.
Bestandsgrootte 8.31 KB
Aantal Installaties 4,000
Huidige Versie 1.0.1
Laatst Bijgewerkt 2018-02-11
Publicatiedatum 2018-02-11
Ontwikkelaar SAGAN
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/sagan/chrome-extension-video-tool
Ondersteunde Talen 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
        }
    ]
}