CopyShot

Easily edit websites, take screenshots and manage them with CopyShot

CopyShot क्या है?

CopyShot Mikkel Birkeholm द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Easily edit websites, take screenshots and manage them with CopyShot"।

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

screenshot
screenshot
screenshot

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

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

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

                        CopyShot lets you easily edit website content on the fly and save your work for later. 

With CopyShot, you can:
- Edit website content
- Take screenshots
- Manage screenshots throught a dashboard
- Bulk download as zip or copy directly to clipboard                    

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

नाम CopyShot CopyShot
ID pjcllckliodbcjgijagbdlmfdceglkac
आधिकारिक URL https://chromewebstore.google.com/detail/copyshot/pjcllckliodbcjgijagbdlmfdceglkac
विवरण Easily edit websites, take screenshots and manage them with CopyShot
फ़ाइल का आकार 379 KB
स्थापना संख्या 74
वर्तमान संस्करण 0.1
अंतिम अपडेट 2023-10-08
प्रकाशन तिथि 2023-10-07
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर Mikkel Birkeholm
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.mikkelbirkeholm.dk/copyshot
सहायता पृष्ठ URL https://www.mikkelbirkeholm.dk/copyshot
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CopyShot",
    "description": "Easily edit websites, take screenshots and manage them with CopyShot",
    "version": "0.1",
    "manifest_version": 3,
    "author": "[email protected]",
    "icons": {
        "32": "icon\/32.png",
        "64": "icon\/64.png",
        "128": "icon\/128.png",
        "256": "icon\/256.png"
    },
    "commands": {
        "start-edit": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "mac": "Command+Shift+E"
            },
            "description": "Start Edit Mode for the current page"
        },
        "_execute_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+E",
                "mac": "Command+Shift+E",
                "chromeos": "Ctrl+Shift+E",
                "linux": "Ctrl+Shift+E"
            }
        }
    },
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "unlimitedStorage",
        "activeTab",
        "scripting"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    }
}