vera / chrome-ext /manifest.json
liujch1998's picture
Chrome extension
c942159
raw
history blame contribute delete
841 Bytes
{
"manifest_version": 3,
"name": "Vera",
"description": "Verify commonsense statements in-the-wild.",
"version": "1.0",
"icons": {
"16": "images/aloe-16.png",
"32": "images/aloe-32.png",
"48": "images/aloe-48.png",
"128": "images/aloe-128.png"
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": {
"16": "images/aloe-16.png",
"32": "images/aloe-32.png",
"48": "images/aloe-48.png",
"128": "images/aloe-128.png"
}
},
"permissions": ["scripting", "activeTab"],
"host_permissions": [
"https://qa.cs.washington.edu/"
],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+B",
"mac": "Command+B"
}
}
}
}