Inspect and view changes in Hate Block 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": "Hate Block",
"description": "Hate speech has been at all-time high on the internet. This amounts to not just harassment, but also creates misinformation & anger.",
"version": "0.0.10",
"icons": {
"64": "icons/icon.png"
},
"browser_action": {
"default_icon": {
"48": "icons/icon.png"
},
"default_title": "Hate Block",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"css": [
"fix.css"
],
"js": [
"jquery.js",
"jquery.mark.min.js",
"content_script.js"
],
"run_at": "document_end"
}
],
"permissions": [
"tabs",
"<all_urls>"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}