Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Copy Link Text",
"description": "Chrome Extension",
"version": "1.0",
"author": "Devin Adams",
"action": {
"default_icon": {
"16": "static\/icon16.png",
"24": "static\/icon24.png",
"32": "static\/icon32.png"
}
},
"permissions": [
"contextMenus"
],
"icons": {
"16": "static\/icon16.png"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content-script.js"
]
}
]
}