Copy Element Text
Copy Element Text is a lets you right click on an element and copy its contents to your clipboard.
Wat is Copy Element Text?
Copy Element Text is een Chrome-extensie ontwikkeld door bracketsage, en de belangrijkste functie is "Copy Element Text is a lets you right click on an element and copy its contents to your clipboard.".
Download het CRX-bestand van de extensie Copy Element Text
Download Copy Element Text-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | ![]() |
ID | ikhdonfbocnkmhhcaejgopdlknaemhaj |
Officiële URL | https://chrome.google.com/webstore/detail/copy-element-text/ikhdonfbocnkmhhcaejgopdlknaemhaj |
Beschrijving | Copy Element Text is a lets you right click on an element and copy its contents to your clipboard. |
Bestandsgrootte | 32.97 KB |
Aantal Installaties | 161 |
Huidige Versie | 0.0.2 |
Laatst Bijgewerkt | 2015-08-06 |
Publicatiedatum | 2015-08-06 |
Beoordeling | 5.00/5 Totaal 3 Beoordelingen |
Ontwikkelaar | bracketsage |
Betalingswijze | free |
Ondersteunde Talen | 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" } |