A tool to edit images.
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",
"name": "LeImgEdit",
"version": "1.1",
"manifest_version": 2,
"minimum_chrome_version": "28",
"description": "A tool to edit images.",
"offline_enabled": true,
"icons": {
"128": "assets/icon_128.png"
},
"app": {
"background": {
"scripts": [
"background.js"
]
}
},
"permissions": [
{
"fileSystem": [
"write",
"retainEntries"
]
},
"storage"
],
"file_handlers": {
"image": {
"types": [
"image/png",
"image/jpeg"
]
}
}
}