Files
emoji-chrome-extension/manifest.json
2025-08-29 23:36:07 +07:00

41 lines
926 B
JSON

{
"name": "Dewemoji - Emojis Made Effortless",
"description": "Search emojis and insert into any text field.",
"version": "1.0.0",
"manifest_version": 3,
"permissions": ["storage", "scripting", "activeTab", "sidePanel", "identity", "identity.email"],
"side_panel": {
"default_path": "panel.html"
},
"host_permissions": ["<all_urls>"],
"action": {
"default_title": "Emoji Widget"
},
"background": {
"service_worker": "background.js"
},
"commands": {
"toggle-panel": {
"suggested_key": {
"default": "Ctrl+Shift+E",
"mac": "Command+Shift+E"
},
"description": "Toggle Emoji Side Panel"
}
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"],
"run_at": "document_idle",
"all_frames": false
}
]
}