YouTube Screenshot

Save Take screenshots from YouTube video

YouTube Screenshot क्या है?

YouTube Screenshot info द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Save Take screenshots from YouTube video"।

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

screenshot

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

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

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

                        A small add-on to take screenshots of YouTube videos with one click.
- This add-on is completely free to use.
- This add-on adds an extra button in the YouTube player to take a screenshot of the video.                    

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

नाम YouTube Screenshot YouTube Screenshot
ID mdblbmmnmgoglgggphofecocdniamacg
आधिकारिक URL https://chrome.google.com/webstore/detail/youtube-screenshot/mdblbmmnmgoglgggphofecocdniamacg
विवरण Save Take screenshots from YouTube video
फ़ाइल का आकार 164 KB
स्थापना संख्या 230
वर्तमान संस्करण 2.0.0
अंतिम अपडेट 2022-12-05
प्रकाशन तिथि 2022-12-05
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर info
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Screenshot",
    "description": "Save Take screenshots from YouTube video",
    "manifest_version": 3,
    "version": "2.0.0",
    "background": {
        "service_worker": "worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "alarms",
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "options_ui": {
        "page": "options\/index.html"
    },
    "icons": {
        "128": "icons\/icon.png"
    }
}