Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Send 2 Photopea",
"version": "0.3.99",
"description": "Send image to Photopea",
"manifest_version": 3,
"permissions": [
"activeTab",
"contextMenus",
"scripting",
"storage"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"contentScript.js"
],
"all_frames": false
},
{
"matches": [
"<all_urls>"
],
"js": [
"ElementPicker.js"
],
"css": [
"ElementPicker.css"
],
"all_frames": false
}
],
"host_permissions": [
"<all_urls>"
],
"icons": {
"16": "assets\/icon16.png",
"32": "assets\/icon32.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
},
"action": {
"default_icon": {
"16": "assets\/icon16.png",
"32": "assets\/icon32.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
},
"default_title": "Send 2 Photopea"
}
}