Screen Capture and download

Capture current page and download the image.

Screen Capture and download क्या है?

Screen Capture and download extensioncreatorsllc द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Capture current page and download the image."।

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

screenshot

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

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

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

                        This chrome extension allows user to take the screen shot of current page in chrome and download it as a image.                    

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

नाम Screen Capture and download Screen Capture and download
ID gdnehbhmjdcdinmninaodlclfphjkplk
आधिकारिक URL https://chrome.google.com/webstore/detail/screen-capture-and-downlo/gdnehbhmjdcdinmninaodlclfphjkplk
विवरण Capture current page and download the image.
फ़ाइल का आकार 157 KB
स्थापना संख्या 6,726
वर्तमान संस्करण 1.5
अंतिम अपडेट 2019-08-27
प्रकाशन तिथि 2019-08-27
रेटिंग 4.52/5 कुल 25 रेटिंग्स
डेवलपर extensioncreatorsllc
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://bornsecret.com/privacy.html
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Screen Capture and download",
    "version": "1.5",
    "description": "Capture current page and download the image.",
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content1.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Capture screen and download!",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icon128.png",
        "16": "icon.png",
        "32": "icon32.png",
        "48": "icon48.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+P"
            }
        }
    },
    "permissions": [
        "activeTab",
        "downloads",
        ""
    ],
    "manifest_version": 2
}