Inspect and view changes in X to Y: The Web Cleanser 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
{
"manifest_version": 2,
"name": "X to Y: The Web Cleanser",
"description": "Replaces all bad words with an asterisk. Redirects pages with a lot of bad content.",
"version": "1.0.0",
"icons": {
"16": "broom.png",
"48": "broom.png",
"128": "broom.png"
},
"browser_action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}