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": "Privacy Extension for Whatsapp Web",
"version": "1.0.0",
"description": "Activate to blur private content on messaging apps for public privacy",
"permissions": [
"storage"
],
"action": {
"default_popup": "popup.html"
},
"icons": {
"16": "Images\/Icons\/Icon 16.png",
"32": "Images\/Icons\/Icon 32.png",
"64": "Images\/Icons\/Icon 64.png",
"128": "Images\/Icons\/Icon 128.png",
"2000": "Images\/Icons\/Icon 2000.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/web.whatsapp.com\/"
],
"js": [
"content.js"
]
}
]
}