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",
"name": "__MSG_extName__",
"short_name": "__MSG_extName__",
"version": "0.3.2",
"description": "__MSG_extDesc__",
"author": "Oleksandr Us",
"manifest_version": 3,
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"default_locale": "en",
"background": {
"service_worker": "background.js",
"type": "module"
},
"icons": {
"16": "menu_icon.png",
"48": "sendme48.png",
"128": "sendme128.png"
},
"action": {
"default_icon": "sendme.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"css": [
"sendme.css",
"css\/toastr8.min.css"
],
"js": [
"js\/jquery2.min.js",
"js\/toastr8.min.js",
"sendme.js"
],
"all_frames": false,
"run_at": "document_end"
}
],
"permissions": [
"activeTab",
"tabs",
"contextMenus",
"storage"
]
}