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 |
官方網址 | 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" } } |