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": "Censor Words", "version": "3.0", "description": "A powerful content filtering extension that helps create a safer browsing experience with customizable word censoring.", "author": "Your Name", "permissions": [ "tabs", "activeTab", "storage", "scripting", "unlimitedStorage" ], "background": { "service_worker": "background.js", "type": "module" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "content.js" ], "css": [ "content-styles.css" ] } ], "options_page": "options.html", "web_accessible_resources": [ { "resources": [ "data\/wordlist.json" ], "matches": [ "<all_urls>" ] } ], "host_permissions": [ "<all_urls>" ], "minimum_chrome_version": "88", "homepage_url": "https:\/\/buzentechnologies.com", "offline_enabled": true }