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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
    }
}