CopyShot

Easily edit websites, take screenshots and manage them with CopyShot

CopyShot란 무엇입니까?

CopyShot은(는) Mikkel Birkeholm에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily edit websites, take screenshots and manage them with CopyShot"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

CopyShot 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 CopyShot CopyShot
ID pjcllckliodbcjgijagbdlmfdceglkac
공식 URL https://chromewebstore.google.com/detail/copyshot/pjcllckliodbcjgijagbdlmfdceglkac
설명 Easily edit websites, take screenshots and manage them with CopyShot
파일 크기 379 KB
설치 횟수 74
현재 버전 0.1
최근 업데이트 2023-10-08
출시 날짜 2023-10-07
평점 5.00/5 총 3 개의 평점
개발자 Mikkel Birkeholm
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.mikkelbirkeholm.dk/copyshot
도움말 페이지 URL https://www.mikkelbirkeholm.dk/copyshot
지원되는 언어 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"
    }
}