Fallen London Favourites 1899

Fallen London Favourites 1899

A new and updated version of the Fallen London Favourites addon for use with the online game, Fallen London. Enable/disable specific storylets and cards to prevent misclicks! Forked from gasovn (in turn forked from kav2k)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Fallen London Favourites 1899",
  "short_name": "Fallen London Favourites 1899",
  "description": "Fork of an unofficial Fallen London extension to quickly choose favourite branches",
  "version": "0.5.6",
  "icons": {
    "16": "img/icon.png",
    "32": "img/icon.png",
    "48": "img/icon.png",
    "128": "img/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.fallenlondon.com/*"
      ],
      "js": [
        "js/lib/jquery.js",
        "js/lib/mutation-summary.js",
        "js/storage.js",
        "js/content.js"
      ],
      "css": [
        "css/content.css"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "js/storage.js",
      "js/background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "*://*.fallenlondon.com/*"
  ],
  "minimum_chrome_version": "49",
  "options_ui": {
    "page": "options.html",
    "chrome_style": false
  },
  "web_accessible_resources": [
    "img/*"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{e7bb2dc3-ee29-49dd-b429-f317a79561c3}"
    }
  }
}