CopyShot

Easily edit websites, take screenshots and manage them with CopyShot

Was ist CopyShot?

CopyShot ist eine Chrome-Erweiterung, die von Mikkel Birkeholm entwickelt wurde, und ihr Hauptmerkmal ist "Easily edit websites, take screenshots and manage them with CopyShot".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

CopyShot-Erweiterungs-CRX-Datei herunterladen

Laden Sie CopyShot-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name CopyShot CopyShot
ID pjcllckliodbcjgijagbdlmfdceglkac
Offizielle URL https://chromewebstore.google.com/detail/copyshot/pjcllckliodbcjgijagbdlmfdceglkac
Beschreibung Easily edit websites, take screenshots and manage them with CopyShot
Dateigröße 379 KB
Installationsanzahl 74
Aktuelle Version 0.1
Letztes Update 2023-10-08
Veröffentlichungsdatum 2023-10-07
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler Mikkel Birkeholm
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.mikkelbirkeholm.dk/copyshot
Hilfeseite URL https://www.mikkelbirkeholm.dk/copyshot
Unterstützte Sprachen 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"
    }
}