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",
"description": "Quick SVG Copier - Easily copy any SVG element to clipboard",
"version": "1.0.1",
"manifest_version": 3,
"name": "SVG Copy Pro",
"short_name": "SVG-Copy-Pro",
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"all_frames": true,
"js": [
"content.js"
]
}
],
"background": {
"service_worker": "background.js"
},
"icons": {
"32": "icon\/icon32.png",
"128": "icon\/icon128.png"
},
"permissions": [
"activeTab",
"contextMenus",
"scripting"
],
"host_permissions": [
"<all_urls>"
],
"action": []
}