Element Capture
Screen capture any element on a webpage.
什么是Element Capture?
Element Capture是由tlrobinson开发的Chrome扩展程序,该扩展的主要功能是“Screen capture any element on a webpage.”。
下载Element Capture扩展crx文件
下载Element Capture扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | |
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" } } |