CopyShot

Easily edit websites, take screenshots and manage them with CopyShot

Vad är CopyShot?

CopyShot är en Chrome-tillägg utvecklad av Mikkel Birkeholm, och dess huvudfunktion är "Easily edit websites, take screenshots and manage them with CopyShot".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner CopyShot-förlängningens CRX-fil

Ladda ner CopyShot-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn CopyShot CopyShot
ID pjcllckliodbcjgijagbdlmfdceglkac
Officiell webbadress https://chromewebstore.google.com/detail/copyshot/pjcllckliodbcjgijagbdlmfdceglkac
Beskrivning Easily edit websites, take screenshots and manage them with CopyShot
Filstorlek 379 KB
Antal Installationer 74
Aktuell Version 0.1
Senast Uppdaterad 2023-10-08
Publiceringsdatum 2023-10-07
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare Mikkel Birkeholm
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.mikkelbirkeholm.dk/copyshot
Hjälpsida URL https://www.mikkelbirkeholm.dk/copyshot
Stödda Språk 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"
    }
}