37 lines
780 B
JSON
37 lines
780 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "General Bots",
|
|
"version": "1.0.0",
|
|
"description": "Browser server-side processing capabilities",
|
|
"author": "pragmatismo.com.br",
|
|
"icons": {
|
|
"16": "icons/icon16.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
},
|
|
"permissions": [
|
|
"storage",
|
|
"tabs"
|
|
],
|
|
"host_permissions": [
|
|
"https://web.whatsapp.com/*"
|
|
],
|
|
"action": {
|
|
"default_popup": "popup.html",
|
|
"default_icon": {
|
|
"16": "icons/icon16.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
}
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["https://web.whatsapp.com/*"],
|
|
"js": ["content.js"],
|
|
"css": ["styles.css"]
|
|
}
|
|
],
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
}
|
|
}
|