published version in webstore

This commit is contained in:
dwindown
2025-09-06 23:58:42 +07:00
parent a21f9927e4
commit 6b1efab615
11 changed files with 619 additions and 136 deletions

View File

@@ -1,41 +1,65 @@
{
"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"
},
"name": "Dewemoji - Emojis Made Effortless",
"description": "Find and copy emojis instantly. Optional Pro license unlocks tone lock, insert mode, and more.",
"version": "1.0.0",
"offline_enabled": false,
"permissions": [
"storage",
"scripting",
"activeTab",
"sidePanel"
],
"host_permissions": [
"<all_urls>",
"https://api.dewemoji.com/*"
],
"web_accessible_resources": [
{
"resources": [
"assets/*.png",
"assets/*.svg",
"styles.css"
],
"matches": ["<all_urls>"]
}
],
"homepage_url": "https://dewemoji.com",
"manifest_version": 3,
"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"
}
},
"minimum_chrome_version": "114",
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"],
"run_at": "document_idle",
"all_frames": false
}
]
}
"side_panel": {
"default_path": "panel.html"
},
"action": {
"default_title": "Dewemoji",
"default_icon": {
"16": "assets/icon-16.png",
"32": "assets/icon-32.png",
"48": "assets/icon-48.png",
"128": "assets/icon-128.png"
}
},
"icons": {
"16": "assets/icon-16.png",
"32": "assets/icon-32.png",
"48": "assets/icon-48.png",
"128": "assets/icon-128.png"
},
"background": {
"service_worker": "background.js"
},
"commands": {
"toggle-panel": {
"suggested_key": {
"default": "Ctrl+Shift+E",
"mac": "Command+Shift+E"
},
"description": "Toggle Emoji Side Panel"
}
}
}