CopyShot

Easily edit websites, take screenshots and manage them with CopyShot

CopyShot là gì?

CopyShot là một tiện ích mở rộng Chrome được phát triển bởi Mikkel Birkeholm, và tính năng chính của nó là "Easily edit websites, take screenshots and manage them with CopyShot".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng CopyShot

Tải xuống các tệp mở rộng CopyShot dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên CopyShot CopyShot
ID pjcllckliodbcjgijagbdlmfdceglkac
URL Chính Thức https://chromewebstore.google.com/detail/copyshot/pjcllckliodbcjgijagbdlmfdceglkac
Mô tả Easily edit websites, take screenshots and manage them with CopyShot
Kích Thước Tệp 379 KB
Số Lần Cài Đặt 74
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2023-10-08
Ngày Phát Hành 2023-10-07
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Mikkel Birkeholm
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.mikkelbirkeholm.dk/copyshot
URL Trang Trợ Giúp https://www.mikkelbirkeholm.dk/copyshot
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}