Don't like a webpage, destroy it!
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",
"name": "website breaker",
"description": "Don't like a webpage, destroy it!",
"version": "0.0.0.2",
"manifest_version": 3,
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"main.bundle.js"
]
}
],
"icons": {
"128": "128.png"
},
"action": {
"scripts": [
"popup.js"
],
"default_title": "Break the web page",
"default_popup": "popup.html"
}
}