Edit photos from any web page
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Live Photo Editor Online",
"description": "Edit photos from any web page",
"version": "1.0",
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage",
"activeTab",
"scripting"
],
"icons": {
"16": "/images/favicon-16.png",
"32": "/images/favicon-32.png",
"48": "/images/favicon-48.png",
"128": "/images/favicon-128.png"
},
"action": {
"default_popup": "/src/popup.html",
"default_icon": {
"16": "/images/favicon-16.png",
"32": "/images/favicon-32.png",
"48": "/images/favicon-48.png",
"128": "/images/favicon-128.png"
}
}
}