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",
"version": "0.0.3",
"name": "Echo Memo - Social media bookmark powered by AI",
"manifest_version": 3,
"background": {
"service_worker": "background-wrapper.js"
},
"description": "Echo Memo extension is for managing social media links. With ai powered multi-media understanding and semantic search.",
"action": [],
"content_scripts": [
{
"js": [
"content-scripts.js"
],
"matches": [
"<all_urls>",
"*:\/\/*\/*"
],
"run_at": "document_idle"
}
],
"icons": {
"16": "gmate-logo-16.png",
"32": "gmate-logo-32.png",
"48": "gmate-logo-48.png",
"128": "gmate-logo-128.png"
},
"web_accessible_resources": [
{
"resources": [
"content-scripts.css",
"sidePanel.html",
"inject-content-script.js"
],
"matches": [
"<all_urls>",
"*:\/\/*\/*"
]
}
],
"content_security_policy": {
"script-src": "'self' 'unsafe-eval'",
"object-src": "'self'"
},
"host_permissions": [
"<all_urls>",
"*:\/\/*\/*"
],
"permissions": [
"activeTab",
"declarativeNetRequest",
"background",
"contextMenus",
"cookies",
"storage",
"downloads",
"tabs",
"webRequest",
"scripting",
"sidePanel"
],
"side_panel": {
"default_path": "sidePanel.html"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Period",
"mac": "Command+Period"
}
}
}
}