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文件

下载CopyShot扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    }
}