Screenshot YouTube

Take a screenshot of any YouTube video with one click.

Screenshot YouTube क्या है?

Screenshot YouTube Zdeněk Gromnica | FutureMillennium द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Take a screenshot of any YouTube video with one click."।

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

screenshot
screenshot

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

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

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

                        Adds a “Screenshot” button to the YouTube video player which saves a screenshot of the currently playing video as a file, or copies it to the clipboard, or both.

Optionally with keyboard shortcuts, and buttons for changing the playback rate.

This extension does not contain any malicious or tracking code. No viruses. No ads. Only good software.

Thanks to Ari Velazquez, and Zertsu for their contributions.

Consider supporting on Patreon: https://www.patreon.com/FutureMillennium

Open source at https://github.com/FutureMillennium/Screenshot-YouTube                    

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

नाम Screenshot YouTube Screenshot YouTube
ID gjoijpfmdhbjkkgnmahganhoinjjpohk
आधिकारिक URL https://chromewebstore.google.com/detail/screenshot-youtube/gjoijpfmdhbjkkgnmahganhoinjjpohk
विवरण Take a screenshot of any YouTube video with one click.
फ़ाइल का आकार 16.15 KB
स्थापना संख्या 446,521
वर्तमान संस्करण 2.4.1
अंतिम अपडेट 2021-12-20
प्रकाशन तिथि 2020-02-04
रेटिंग 4.45/5 कुल 366 रेटिंग्स
डेवलपर Zdeněk Gromnica | FutureMillennium
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.patreon.com/FutureMillennium
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Screenshot YouTube",
    "version": "2.4.1",
    "description": "Take a screenshot of any YouTube video with one click.",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "page.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "https:\/\/www.youtube.com\/*",
        "webNavigation",
        "storage"
    ]
}