Printscreen YouTube

Take a printscreen of any YouTube video.

Printscreen YouTube क्या है?

Printscreen YouTube https://limbuscode.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Take a printscreen of any YouTube video."।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        It places a button called "Printscreen" on the Youtube player which saves a screenshot of the currently playing video as a file or copies it to the clipboard.

Get a Preview of the printscreen image that you took.

Go to chrome://extensions/shortcuts to customize screenshot keyboard shortcut (Default is: Alt+S)

Choose which format the file will be: PNG, JPG, or WEBP. (Default is: PNG)

Consider supporting on buymeacoffee: https://bit.ly/limbuscode-buymeacoffee

Changelog;

v0.0.1:

- First version                    

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

नाम Printscreen YouTube Printscreen YouTube
ID ledkfpmgmimfleobfeepelhihghneckg
आधिकारिक URL https://chromewebstore.google.com/detail/printscreen-youtube/ledkfpmgmimfleobfeepelhihghneckg
विवरण Take a printscreen of any YouTube video.
फ़ाइल का आकार 34.16 KB
स्थापना संख्या 49
वर्तमान संस्करण 0.0.1
अंतिम अपडेट 2024-01-05
प्रकाशन तिथि 2022-10-25
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर https://limbuscode.com
ईमेल [email protected]
भुगतान के प्रकार free
सहायता पृष्ठ URL https://docs.google.com/forms/d/e/1FAIpQLSd_7IU5Rie2lqsxNA7TunGaSlgbmZOcORmtzrtR5fsiju07JQ/viewform?usp=pp_url&entry.937029896=Printscreen+YouTube
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Printscreen YouTube",
    "version": "0.0.1",
    "description": "Take a printscreen of any YouTube video.",
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "page.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "commands": {
        "ss": {
            "suggested_key": "Alt+S",
            "description": "Screenshot"
        }
    },
    "permissions": [
        "webNavigation",
        "storage",
        "scripting",
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/www.youtube.com\/*"
    ],
    "icons": {
        "16": "assets\/img\/16.png",
        "24": "assets\/img\/24.png",
        "32": "assets\/img\/32.png",
        "48": "assets\/img\/48.png",
        "64": "assets\/img\/64.png",
        "128": "assets\/img\/128.png"
    }
}