Fallen London Favourites

Fallen London Favourites

Fork of an unofficial Fallen London extension to quickly choose favourite branches

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Fallen London Favourites",
  "short_name": "Fallen London Favourites",
  "description": "Fork of an unofficial Fallen London extension to quickly choose favourite branches",
  "version": "0.5.2",
  "icons": {
    "16": "img/icon16.png",
    "32": "img/icon32.png",
    "48": "img/icon48.png",
    "128": "img/icon128.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/*"
  ]
}