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",
"name": "Copy Image URL",
"version": "0.0.1",
"description": "Copy image source URLs from Google image search",
"manifest_version": 3,
"permissions": [
"contextMenus",
"clipboardWrite",
"activeTab"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"contentScript.js"
]
}
],
"icons": {
"16": "icon-48.png",
"48": "icon-96.png",
"128": "icon-128.png"
}
}