Copy Element Text
Copy Element Text is a lets you right click on an element and copy its contents to your clipboard.
什么是Copy Element Text?
Copy Element Text是由bracketsage开发的Chrome扩展程序,该扩展的主要功能是“Copy Element Text is a lets you right click on an element and copy its contents to your clipboard.”。
下载Copy Element Text扩展crx文件
下载Copy Element Text扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Copy Element Text lets you right click on an element and copy its contents or the contents of parent elements. Useful for pages that won't let you highlight.
扩展基本信息
名称 | ![]() |
ID | ikhdonfbocnkmhhcaejgopdlknaemhaj |
官方URL | https://chrome.google.com/webstore/detail/copy-element-text/ikhdonfbocnkmhhcaejgopdlknaemhaj |
简介 | Copy Element Text is a lets you right click on an element and copy its contents to your clipboard. |
文件大小 | 32.97 KB |
安装次数 | 161 |
当前版本 | 0.0.2 |
更新时间 | 2015-08-06 |
上架时间 | 2015-08-06 |
评分 | 5.00/5 共3次评分 |
开发者 | bracketsage |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "persistent": true, "scripts": [ "jq.js", "background.js" ] }, "content_scripts": [ { "js": [ "jq.js", "content.js" ], "all_frames": true, "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "description": "Copy Element Text is a lets you right click on an element and copy its contents to your clipboard.", "manifest_version": 2, "name": "Copy Element Text", "permissions": [ "activeTab", "contextMenus", "clipboardWrite", "clipboardRead" ], "short_name": "Copy ELement Text", "version": "0.0.2" } |