Element Screenshot
Take screenshot of any HTML element on a webpage.
什么是Element Screenshot?
Element Screenshot是由Tahin Rahman开发的Chrome扩展程序,该扩展的主要功能是“Take screenshot of any HTML element on a webpage.”。
扩展截图
下载Element Screenshot扩展crx文件
下载Element Screenshot扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" } } |