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 Blur \u2013 Blur Sensitive Content on Any Website",
"version": "1.1.0",
"description": "Blur sensitive information in real-time during screen sharing and recording. Drag & drop to reposition blurs!",
"permissions": [
"storage",
"activeTab",
"contextMenus"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background\/service-worker.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content-scripts\/blur-engine.js",
"content-scripts\/element-selector.js",
"content-scripts\/blur-overlay.js",
"content-scripts\/inject.js"
],
"css": [
"content-scripts\/styles.css"
],
"run_at": "document_end"
}
],
"action": {
"default_popup": "popup\/popup.html",
"default_icon": {
"16": "assets\/icon16.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
}
},
"icons": {
"16": "assets\/icon16.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
},
"commands": {
"clear-all-blur": {
"suggested_key": {
"default": "Ctrl+Shift+X",
"mac": "Command+Shift+X"
},
"description": "Clear all active blurs"
},
"toggle-blur-mode": {
"suggested_key": {
"default": "Ctrl+Shift+B",
"mac": "Command+Shift+B"
},
"description": "Toggle blur mode on\/off"
}
}
}