Video Tool

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

Video Toolคืออะไร?

Video Tool เป็นส่วนขยายของ Chrome ที่พัฒนาโดย SAGAN และคุณลักษณะหลักของมันคือ "Add loop play function to any html5 video and other tweaks for video playing."

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Video Tool

ดาวน์โหลดไฟล์ส่วนขยาย Video Tool ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Video Tool Video Tool
ID fnapgmcbpehohbcjpfdoaiokmmgfnnkn
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/video-tool/fnapgmcbpehohbcjpfdoaiokmmgfnnkn
คำอธิบาย Add loop play function to any html5 video and other tweaks for video playing.
ขนาดไฟล์ 8.31 KB
จำนวนการติดตั้ง 4,000
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2018-02-11
วันที่เผยแพร่ 2018-02-11
ผู้พัฒนา SAGAN
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/sagan/chrome-extension-video-tool
ภาษาที่รองรับ 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
        }
    ]
}