Examine source code of Fur Affinity Reminder Filter

Inspect and view changes in Fur Affinity Reminder 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": "__MSG_extName__",
  "version": "1.0",
  "default_locale": "en",
  "description": "__MSG_extDesc__",
  "author": "chemicalcrux",
  "permissions": [
    "http://www.furaffinity.net/",
    "https://www.furaffinity.net/",
    "storage"
  ],
  "web_accessible_resources": [
    "inject.js"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "http://www.furaffinity.net/",
        "https://www.furaffinity.net/"
      ],
      "js": [
        "filter.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "config.html"
  },
  "manifest_version": 2,
  "browser_specific_settings": {
    "gecko": {
      "id": "fa-filter@chemicalcrux.org"
    }
  }
}