Inspect and view changes in FurAffinity (FA) Blacklist 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": "FurAffinity (FA) Blacklist",
"description": "A webextension to allow blacklisting content on FA to protect your eyes and sanity.",
"version": "0.3.3",
"icons": {
"16": "icon/16.png",
"32": "icon/32.png",
"48": "icon/48.png",
"96": "icon/96.png",
"128": "icon/128.png"
},
"permissions": [
"storage",
"*://*.furaffinity.net/*"
],
"browser_specific_settings": {
"gecko": {
"id": "fa-blacklist@mal"
}
},
"browser_action": {
"default_title": "Default Popup Title",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"*://*.furaffinity.net/*"
],
"all_frames": false,
"css": [
"content-scripts/content.css"
],
"js": [
"content-scripts/content.js"
]
},
{
"matches": [
"*://*.furaffinity.net/msg/submissions/*"
],
"all_frames": false,
"js": [
"content-scripts/submissions.js"
]
}
]
}