VideoFetcher

Extension to fetch Videos on Websites

VideoFetcher क्या है?

VideoFetcher DatLag द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extension to fetch Videos on Websites"।

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

screenshot

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

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

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

                        This extension is an Open-Source VideoFetcher.

It checks video players on the respective page for available videos and checks request headers for videos to ensure that all videos are found, because some sites try to prevent this from conventional video downloaders.

This extension does not support YouTube videos!

GitHub: https://github.com/DATL4G/VideoFetcher-Extension                    

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

नाम VideoFetcher VideoFetcher
ID dnbaoglnoniehlakplahpeacfnpeedhb
आधिकारिक URL https://chromewebstore.google.com/detail/videofetcher/dnbaoglnoniehlakplahpeacfnpeedhb
विवरण Extension to fetch Videos on Websites
फ़ाइल का आकार 72.12 KB
स्थापना संख्या 83
वर्तमान संस्करण 1.0.0
अंतिम अपडेट 2021-03-24
प्रकाशन तिथि 2021-03-23
डेवलपर DatLag
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/DATL4G/VideoFetcher-Extension
सहायता पृष्ठ URL https://github.com/sponsors/DATL4G
गोपनीयता नीति पृष्ठ URL https://datlag-page.web.app/policies
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "VideoFetcher",
    "description": "Extension to fetch Videos on Websites",
    "version": "1.0.0",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/vendor.js",
                "js\/content_script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/vendor.js",
            "js\/background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "storage",
        "activeTab",
        "",
        "webRequest",
        "background",
        "tabs"
    ],
    "web_accessible_resources": [
        ""
    ]
}