Element Capture

Screen capture any element on a webpage.

ما هو Element Capture؟

Element Capture هو إضافة Chrome تم تطويرها بواسطة tlrobinson، والميزة الرئيسية لها هي "Screen capture any element on a webpage.".

تحميل ملف CRX للإضافة Element Capture

قم بتنزيل ملفات الامتداد Element Capture بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        This is a Chrome extension which will screen capture any HTML element of your choosing.

Click the camera icon in the URL bar to begin selection, then hover over any element and click to capture an image and open it in a new tab.                    

معلومات أساسية عن التمديد

الاسم Element Capture Element Capture
ID kabgnkphidokfocflfangphgdjhkknjg
عنوان URL الرسمي https://chrome.google.com/webstore/detail/element-capture/kabgnkphidokfocflfangphgdjhkknjg
الوصف Screen capture any element on a webpage.
حجم الملف 34.67 KB
عدد التثبيتات 828
النسخة الحالية 1.1
آخر تحديث 2015-09-30
تاريخ النشر 2015-09-30
تقييم 2.83/5 مجموع تقييمات 42
المطور tlrobinson
نوع الدفع free
موقع الإضافة https://github.com/tlrobinson/element-capture
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Element Capture",
    "version": "1.1",
    "manifest_version": 2,
    "description": "Screen capture any element on a webpage.",
    "page_action": {
        "default_icon": "icon48.png"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}