Element Screenshot
Take screenshot of any HTML element on a webpage.
Element Screenshot là gì?
Element Screenshot là một tiện ích mở rộng Chrome được phát triển bởi Tahin Rahman, và tính năng chính của nó là "Take screenshot of any HTML element on a webpage.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Element Screenshot
Tải xuống các tệp mở rộng Element Screenshot 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
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | mhbapdljigafafoimcnnhagdclejnkcf |
URL Chính Thức | https://chrome.google.com/webstore/detail/element-screenshot/mhbapdljigafafoimcnnhagdclejnkcf |
Mô tả | Take screenshot of any HTML element on a webpage. |
Kích Thước Tệp | 13.83 KB |
Số Lần Cài Đặt | 2,354 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2015-08-24 |
Ngày Phát Hành | 2015-08-24 |
Đánh Giá | 3.54/5 Tổng số 46 Đánh Giá |
Nhà Phát Triển | Tahin Rahman |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://www.tahins.me |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |