Adds a menu item to the context menu, which will copy an element's text content.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "copyElementText",
"version": "1.0",
"description": "Adds a menu item to the context menu, which will copy an element's text content.",
"permissions": [
"contextMenus",
"clipboardWrite"
],
"background": {
"scripts": [
"index.js"
]
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"front.js"
]
}
]
}