Any Video Resume

Return to last time you stopped any video.

Any Video Resume क्या है?

Any Video Resume https://www.bit01.de द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Return to last time you stopped any video."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

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

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

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

                        The extension remembers where you last left a video and *resumes* it there. This works for ANY HTML5 video on all common platforms (YouTube, Vimeo, ...). This works even without a logged in user. for each It remembers the last places of videos for a year.

It considers only videos that go at least 60 seconds. It will ignore short videos (intros, promotional videos...). As soon as the last 30 seconds are reached, the video starts from the beginning.                    

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

नाम Any Video Resume Any Video Resume
ID nlbiijlalckdjibflknamcbhonniglkl
आधिकारिक URL https://chrome.google.com/webstore/detail/any-video-resume/nlbiijlalckdjibflknamcbhonniglkl
विवरण Return to last time you stopped any video.
फ़ाइल का आकार 20.34 KB
स्थापना संख्या 100
वर्तमान संस्करण 1.2.0
अंतिम अपडेट 2021-11-26
प्रकाशन तिथि 2021-11-10
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर https://www.bit01.de
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/bitnulleins/any-video-resume
सहायता पृष्ठ URL https://www.bit01.de/kontakt/
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Any Video Resume",
    "version": "1.2.0",
    "description": "Return to last time you stopped any video.",
    "icons": {
        "48": "icons\/logo-48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                ".\/js\/storage.js",
                ".\/js\/video.js",
                ".\/js\/content.js",
                ".\/js\/popup.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "icons\/logo-48.png",
        "default_popup": ".\/html\/popup.html"
    },
    "permissions": [
        "storage"
    ]
}