Inspect and view changes in Blur Fields Extension source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Blur Fields Extension",
"version": "1.0.1",
"description": "Blurs specific fields which are required and allows blurring the whole page via a shortcut.",
"permissions": [
"activeTab",
"storage"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"commands": {
"blur_everything": {
"suggested_key": {
"default": "Ctrl+Shift+B",
"mac": "Command+Shift+B"
},
"description": "Blur the entire page"
},
"toggle_selection_mode": {
"suggested_key": {
"default": "Ctrl+Shift+U",
"mac": "Command+Shift+U"
},
"description": "Toggle Blur Selection Mode"
},
"toggle_toolbar": {
"suggested_key": {
"default": "Ctrl+Shift+T",
"mac": "Alt+Shift+T"
},
"description": "Toggle Toolbar"
}
},
"action": {
"default_title": "Toggle Toolbar",
"default_icon": {
"16": "icons/icon.png",
"32": "icons/icon128.png",
"48": "icons/icon128.png",
"128": "icons/icon128.png"
}
},
"icons": {
"16": "icons/icon.png",
"32": "icons/icon128.png",
"48": "icons/icon128.png",
"128": "icons/icon128.png"
}
}