Video Speed Lord

This extension allow you to control the speed of the video playing. Feel like a time lord!

Video Speed Lord क्या है?

Video Speed Lord roman.oxenuk द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allow you to control the speed of the video playing. Feel like a time lord!"।

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Video Speed Lord एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Hackathon project for speeding up and slowing down HTML5 videos, especialy at vk.com =)
Thanks to GoHack Hackathon (vk.com/gohack) for pizza and fun!                    

एक्सटेंशन की मूल जानकारी

नाम Video Speed Lord Video Speed Lord
ID kmeeediidboennbhdjfceodhdboaphlc
आधिकारिक URL https://chrome.google.com/webstore/detail/video-speed-lord/kmeeediidboennbhdjfceodhdboaphlc
विवरण This extension allow you to control the speed of the video playing. Feel like a time lord!
फ़ाइल का आकार 5.75 KB
स्थापना संख्या 22
वर्तमान संस्करण 1.0
अंतिम अपडेट 2017-04-15
प्रकाशन तिथि 2017-04-15
रेटिंग 5.00/5 कुल 4 रेटिंग्स
डेवलपर roman.oxenuk
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Video Speed Lord",
    "description": "This extension allow you to control the speed of the video playing. Feel like a time lord!",
    "version": "1.0",
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "myscript.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Click here!"
    },
    "permissions": [
        "activeTab",
        "debugger",
        "tabs",
        "https:\/\/ajax.googleapis.com\/"
    ]
}