Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"manifest_version": 3,
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"version": "1.0.3",
"default_locale": "en",
"icons": {
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"permissions": [
"storage"
],
"background": {
"service_worker": "assets\/js\/background.js"
},
"content_scripts": [
{
"css": [
"assets\/css\/app.css"
],
"js": [
"assets\/js\/vendors.js",
"assets\/js\/content-scripts.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"run_at": "document_start"
}
],
"action": {
"default_popup": "index.html",
"default_icon": "icons\/icon48.png",
"default_title": "Image Zoom Tool"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; frame-src 'self'; child-src 'self'"
}
}