A filter that removes Hillary Clinton from webpages and filters/removes Hillary Clinton from Facebook and Youtube.
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",
"manifest_version": 2,
"name": "Hillary Blocker",
"description": "A filter that removes Hillary Clinton from webpages and filters/removes Hillary Clinton from Facebook and Youtube.",
"version": "1.5",
"permissions": [
"https://secure.flickr.com/",
"storage",
"management"
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_icon": "icon.png",
"default_popup": "ui.html"
},
"background": {
"persistent": false,
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"css": [
"source/ytfilter.css"
],
"js": [
"source/jquery-2.1.3.min.js",
"source/content.js"
],
"matches": [
"http://*/*",
"https://*/*"
]
}
]
}