Video Tool

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

Apa itu Video Tool?

Video Tool adalah ekstensi Chrome yang dikembangkan oleh SAGAN, dan fitur utamanya adalah "Add loop play function to any html5 video and other tweaks for video playing.".

Unduh Berkas CRX Ekstensi Video Tool

Unduh file ekstensi Video Tool dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Video Tool Video Tool
ID fnapgmcbpehohbcjpfdoaiokmmgfnnkn
URL Resmi https://chrome.google.com/webstore/detail/video-tool/fnapgmcbpehohbcjpfdoaiokmmgfnnkn
Deskripsi Add loop play function to any html5 video and other tweaks for video playing.
Ukuran File 8.31 KB
Jumlah Instalasi 4,000
Versi Saat Ini 1.0.1
Terakhir Diperbarui 2018-02-11
Tanggal Publikasi 2018-02-11
Pengembang SAGAN
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/sagan/chrome-extension-video-tool
Bahasa yang Didukung 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
        }
    ]
}