You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Web-Dev-For-Beginners/5-browser-extension/start/dist/manifest.json

12 lines
220 B

4 years ago
{
"manifest_version": 3,
4 years ago
"name": "My Carbon Trigger",
"version": "0.1.0",
"host_permissions": ["<all_urls>"],
4 years ago
"background": {
"service_worker": "background.js"
4 years ago
},
"action": {
4 years ago
"default_popup": "index.html"
}
}