HTML5 Video Resumer

Resumes HTML5 videos that you played before.

HTML5 Video Resumer क्या है?

HTML5 Video Resumer Merten Peetz द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Resumes HTML5 videos that you played before."।

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

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

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

                        This extension will automatically remember at which time you left HTML5 videos and will resume them when played again. The times for played videos are saved up to 1 month.

It supports all HTML5 video formats including MP4 and WEBM. Flash videos are not supported.

It doesn't work for sites that change the video URLs on every page visit yet, such as Youtube and Netflix. However, often times those sites have build in video resume support.                    

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

नाम HTML5 Video Resumer HTML5 Video Resumer
ID gbommkoaofnelolgpcmeakpfbgghagdi
आधिकारिक URL https://chrome.google.com/webstore/detail/html5-video-resumer/gbommkoaofnelolgpcmeakpfbgghagdi
विवरण Resumes HTML5 videos that you played before.
फ़ाइल का आकार 8.17 KB
स्थापना संख्या 318
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2016-02-23
प्रकाशन तिथि 2016-02-23
रेटिंग 3.67/5 कुल 6 रेटिंग्स
डेवलपर Merten Peetz
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/MorbZ/HTML5-Video-Resumer
सहायता पृष्ठ URL https://github.com/MorbZ/HTML5-Video-Resumer/issues
समर्थित भाषाएँ de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "HTML5 Video Resumer",
    "version": "1.0.1",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "storage",
        "unlimitedStorage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/functions.js",
                "js\/content.js"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "js\/functions.js",
            "js\/background.js"
        ]
    }
}