Element Capture

Screen capture any element on a webpage.

Element Capture क्या है?

Element Capture tlrobinson द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Screen capture any element on a webpage."।

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

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

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

                        This is a Chrome extension which will screen capture any HTML element of your choosing.

Click the camera icon in the URL bar to begin selection, then hover over any element and click to capture an image and open it in a new tab.                    

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

नाम Element Capture Element Capture
ID kabgnkphidokfocflfangphgdjhkknjg
आधिकारिक URL https://chrome.google.com/webstore/detail/element-capture/kabgnkphidokfocflfangphgdjhkknjg
विवरण Screen capture any element on a webpage.
फ़ाइल का आकार 34.67 KB
स्थापना संख्या 828
वर्तमान संस्करण 1.1
अंतिम अपडेट 2015-09-30
प्रकाशन तिथि 2015-09-30
रेटिंग 2.83/5 कुल 42 रेटिंग्स
डेवलपर tlrobinson
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/tlrobinson/element-capture
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Element Capture",
    "version": "1.1",
    "manifest_version": 2,
    "description": "Screen capture any element on a webpage.",
    "page_action": {
        "default_icon": "icon48.png"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}