first commit

This commit is contained in:
dwindown
2025-08-29 23:36:07 +07:00
commit a21f9927e4
7 changed files with 1657 additions and 0 deletions

41
manifest.json Normal file
View File

@@ -0,0 +1,41 @@
{
"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
}
]
}