Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "whaBro",
"version": "1.0.1",
"description": "Adds additional functionality to WhatsApp Web.",
"permissions": [
"activeTab",
"contextMenus",
"tabs",
"storage",
"scripting"
],
"host_permissions": [
"https:\/\/web.whatsapp.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/web.whatsapp.com\/*"
],
"js": [
"emojis.js",
"content.js"
],
"css": [
"styles.css"
]
},
{
"matches": [
"<all_urls>"
],
"js": [
"share.js"
]
}
],
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "icons\/16x16.png",
"48": "icons\/48x48.png",
"128": "icons\/128x128.png"
},
"action": {
"default_title": "whaBro Share",
"default_icon": {
"16": "icons\/16x16.png",
"48": "icons\/48x48.png",
"128": "icons\/128x128.png"
}
},
"web_accessible_resources": [
{
"resources": [
"icons\/48x48.png"
],
"matches": [
"<all_urls>"
]
},
{
"resources": [
"modal.html",
"icons\/*",
"injected_script.js"
],
"matches": [
"https:\/\/web.whatsapp.com\/*"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; connect-src blob:;"
}
}