CopyShot

Easily edit websites, take screenshots and manage them with CopyShot

What is CopyShot?

CopyShot is a Chrome extension developed by Mikkel Birkeholm, and its main feature is "Easily edit websites, take screenshots and manage them with CopyShot".

Extension Screenshots

screenshot
screenshot
screenshot

Download CopyShot Extension CRX File

Download CopyShot extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name CopyShot CopyShot
ID pjcllckliodbcjgijagbdlmfdceglkac
Official URL https://chromewebstore.google.com/detail/copyshot/pjcllckliodbcjgijagbdlmfdceglkac
Description Easily edit websites, take screenshots and manage them with CopyShot
File Size 379 KB
Installation Count 74
Current Version 0.1
Last Updated 2023-10-08
Publish Date 2023-10-07
Rating 5.00/5 Total 3 Ratings
Developer Mikkel Birkeholm
Email [email protected]
Payment Type free
Extension Website https://www.mikkelbirkeholm.dk/copyshot
Help Page URL https://www.mikkelbirkeholm.dk/copyshot
Supported Languages 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"
    }
}