Examine source code of TopicBanFC

Inspect and view changes in TopicBanFC 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": "TopicBanFC",
  "version": "1.0.6",
  "homepage_url": "https://github.com/jesusnoseq/TopicBanFC",
  "description": "Banea hilos que contengan ciertas palabras en el foro de forocoches.com",
  "applications": {
    "gecko": {
      "id": "topicbanfc@jesusnoseq.addons.mozilla.org",
      "strict_min_version": "57.0"
    }
  },
  "icons": {
    "48": "icons/Icon48.png",
    "96": "icons/Icon96.png"
  },
  "browser_action": {
    "default_icon": "icons/Icon48.png",
    "default_title": "Cambia las palabras baneadas"
  },
  "options_ui": {
    "page": "ui/editWords.html",
    "browser_style": true
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.forocoches.com/",
        "*://*.forocoches.com/foro/forumdisplay.php*"
      ],
      "js": [
        "bannedWords.js"
      ]
    }
  ]
}