Ebetshot

Copy screenshots of videos directly to your clipboard

Ebetshot क्या है?

Ebetshot Balduvian द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Copy screenshots of videos directly to your clipboard"।

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

screenshot

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

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

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

                        A video screenshotter made especially for use with Anki.

Ebetshot is open source! You can see the code on here on GitHub: https://github.com/balduvian/ebetshot.

All videos on websites you visit will have a little camera  button added in the top right corner. Clicking it will instantly save the current frame of the video to your clipboard.

Pinning Ebetshot to your extensions toolbar allows you to access the settings dropdown. You may choose to show or hide the screenshot button and change the output size of your screenshots. It is recommended to choose a small output size if you will be pasting the screenshots into Anki.

On websites where there are anti-screenshot measures in place or where videos are hosted cross-site, Ebetshot uses screen recording to screenshot. If Ebetshot asks to record your screen, please select "Chrome Tab," then find the current tab in the screen share popup.

Ebetshot is only tested on Youtube and Netflix. It may not work as well on other sites.                    

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

नाम Ebetshot Ebetshot
ID imhioeojmeppiofbppalcignahcckijc
आधिकारिक URL https://chromewebstore.google.com/detail/ebetshot/imhioeojmeppiofbppalcignahcckijc
विवरण Copy screenshots of videos directly to your clipboard
फ़ाइल का आकार 18.3 KB
स्थापना संख्या 42
वर्तमान संस्करण 1.2.4
अंतिम अपडेट 2022-06-26
प्रकाशन तिथि 2022-01-27
डेवलपर Balduvian
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/balduvian/ebetshot
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Ebetshot",
    "description": "Copy screenshots of videos directly to your clipboard",
    "version": "1.2.4",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon16.png",
            "32": "icon32.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "commands": {
        "takeScreenshot": {
            "suggested_key": "Ctrl+P",
            "description": "Take a screenshot"
        }
    }
}