first commit
This commit is contained in:
41
manifest.json
Normal file
41
manifest.json
Normal 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
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user