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
官方網址 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"
    }
}