Element Screenshot
Take screenshot of any HTML element on a webpage.
ما هو Element Screenshot؟
Element Screenshot هو إضافة Chrome تم تطويرها بواسطة Tahin Rahman، والميزة الرئيسية لها هي "Take screenshot of any HTML element on a webpage.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Element Screenshot
قم بتنزيل ملفات الامتداد Element Screenshot بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Element Screenshot =============== This is a Chrome extension which will take screenshot of any HTML element in a webpage. Click the camera icon in the URL bar, hover over the element you want to capture and click to take the screenshot. This extension was originally developed by Robinson and available here (which is not maintained anymore): https://chrome.google.com/webstore/detail/element-capture/kabgnkphidokfocflfangphgdjhkknjg My version is a bug fixed version of the original.
معلومات أساسية عن التمديد
الاسم | |
ID | mhbapdljigafafoimcnnhagdclejnkcf |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/element-screenshot/mhbapdljigafafoimcnnhagdclejnkcf |
الوصف | Take screenshot of any HTML element on a webpage. |
حجم الملف | 13.83 KB |
عدد التثبيتات | 2,354 |
النسخة الحالية | 1.1 |
آخر تحديث | 2015-08-24 |
تاريخ النشر | 2015-08-24 |
تقييم | 3.54/5 مجموع تقييمات 46 |
المطور | Tahin Rahman |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | http://www.tahins.me |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Element Screenshot", "version": "1.1", "manifest_version": 2, "description": "Take screenshot of any HTML element on a webpage.", "page_action": { "default_icon": "icon48.png" }, "permissions": [ "activeTab", "tabs", "http:\/\/*\/", "https:\/\/*\/" ], "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" } } |