22 lines
505 B
JSON
22 lines
505 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Effie's TikTok Extension",
|
|
"description": "Search words on Wiktionary.org",
|
|
"version": "0.1.0",
|
|
"minimum_chrome_version": "100",
|
|
"icons": {
|
|
"16": "icon16.png",
|
|
"32": "icon32.png",
|
|
"48": "icon48.png",
|
|
"128": "icon128.png"
|
|
},
|
|
"background": {
|
|
"service_worker": "service-worker.js",
|
|
"type": "module"
|
|
},
|
|
"action": {
|
|
"default_popup": "popup.html"
|
|
},
|
|
"permissions": ["cookies"],
|
|
"host_permissions": ["*://*.tiktok.com/*"]
|
|
}
|