Copy Element Text
Copy Element Text is a lets you right click on an element and copy its contents to your clipboard.
What is Copy Element Text?
Copy Element Text is a Chrome extension developed by bracketsage, and its main feature is "Copy Element Text is a lets you right click on an element and copy its contents to your clipboard.".
Download Copy Element Text Extension CRX File
Download Copy Element Text extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | ![]() |
ID | ikhdonfbocnkmhhcaejgopdlknaemhaj |
Official URL | https://chrome.google.com/webstore/detail/copy-element-text/ikhdonfbocnkmhhcaejgopdlknaemhaj |
Description | Copy Element Text is a lets you right click on an element and copy its contents to your clipboard. |
File Size | 32.97 KB |
Installation Count | 161 |
Current Version | 0.0.2 |
Last Updated | 2015-08-06 |
Publish Date | 2015-08-06 |
Rating | 5.00/5 Total 3 Ratings |
Developer | bracketsage |
Payment Type | free |
Supported Languages | 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" } |