CopyShot

Easily edit websites, take screenshots and manage them with CopyShot

Qu'est-ce que CopyShot ?

CopyShot est une extension Chrome développée par Mikkel Birkeholm, et sa fonction principale est "Easily edit websites, take screenshots and manage them with CopyShot".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension CopyShot

Téléchargez les fichiers d'extension CopyShot au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom CopyShot CopyShot
ID pjcllckliodbcjgijagbdlmfdceglkac
URL Officiel https://chromewebstore.google.com/detail/copyshot/pjcllckliodbcjgijagbdlmfdceglkac
Description Easily edit websites, take screenshots and manage them with CopyShot
Taille du Fichier 379 KB
Nombre d'Installations 74
Version Actuelle 0.1
Dernière Mise à Jour 2023-10-08
Date de Publication 2023-10-07
Évaluation 5.00/5 Total 3 Évaluations
Développeur Mikkel Birkeholm
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.mikkelbirkeholm.dk/copyshot
URL de la Page d'Aide https://www.mikkelbirkeholm.dk/copyshot
Langues Prises en Charge 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"
    }
}