Inspect and view changes in Negative Filter 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
{
"name": "Negative Filter",
"version": "1.0",
"manifest_version": 2,
"description": "Blur the Negative tweets",
"content_scripts": [
{
"matches": [
"https://twitter.com/*",
"http://twitter.com/*"
],
"js": [
"inject.js"
]
}
],
"browser_action": {
"default_title": "Positive Filter"
},
"permissions": [
"https://twitter.com/*",
"http://twitter.com/*",
"tabs",
"activeTab"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}