CopyShot

Easily edit websites, take screenshots and manage them with CopyShot

Co to jest CopyShot?

CopyShot to rozszerzenie Chrome opracowane przez Mikkel Birkeholm, a jego główną funkcją jest „Easily edit websites, take screenshots and manage them with CopyShot”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia CopyShot

Pobierz pliki rozszerzeń CopyShot w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa CopyShot CopyShot
ID pjcllckliodbcjgijagbdlmfdceglkac
Oficjalny URL https://chromewebstore.google.com/detail/copyshot/pjcllckliodbcjgijagbdlmfdceglkac
Opis Easily edit websites, take screenshots and manage them with CopyShot
Rozmiar pliku 379 KB
Liczba instalacji 74
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2023-10-08
Data Publikacji 2023-10-07
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper Mikkel Birkeholm
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.mikkelbirkeholm.dk/copyshot
Adres URL Strony Pomocy https://www.mikkelbirkeholm.dk/copyshot
Obsługiwane Języki 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"
    }
}