Hides annoying '9GAGGER' anonymous posts
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": "9GAG HideAnon",
"version": "0.3",
"description": "Hide annoying '9GAGGER' anonymous posts",
"icons": {
"48": "icons/logo_48.png",
"96": "icons/logo_96.png"
},
"page_action": {
"browser_style": true,
"default_icon": {
"48": "icons/logo_48.png",
"96": "icons/logo_96.png"
},
"default_title": "You are using HideAnon. Thank you!",
"show_matches": [
"*://*.9gag.com/*"
]
},
"browser_action": {
"default_icon": "icons/logo_48.png",
"default_title": "Enabled"
},
"permissions": [
"*://*.9gag.com/*"
],
"content_scripts": [
{
"matches": [
"*://*.9gag.com/*"
],
"js": [
"cleaner.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{63aeb90c-f603-4e00-88be-44f8e7ae6843}"
}
}
}