CopyShot

Easily edit websites, take screenshots and manage them with CopyShot

CopyShotคืออะไร?

CopyShot เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mikkel Birkeholm และคุณลักษณะหลักของมันคือ "Easily edit websites, take screenshots and manage them with CopyShot"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย CopyShot

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}