Hides nsfw posts on reddit and redirects nsfw subreddits.
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": "SFW-Reddit",
"version": "0.1",
"description": "Adds a red border to all webpages matching mozilla.org.",
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
},
"content_scripts": [
{
"matches": [
"*://*.reddit.com/*"
],
"js": [
"sfwreddit.js"
]
}
]
}