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": "Blobbo \u2013 Word Blocker & Profanity Filter",
"version": "1.3.1",
"description": "Block custom words and phrases (including profanity) across websites \u2013 ideal for SEO QA, content reviews, and safer browsing.",
"action": {
"default_popup": "popup.html",
"default_title": "Blobbo \u2013 Word Blocker"
},
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"permissions": [
"storage",
"activeTab"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "service_worker.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"shared.css"
],
"run_at": "document_idle",
"all_frames": true
}
],
"options_ui": {
"page": "popup.html",
"open_in_tab": true
}
}