Retain me not

Retain me not

Free your FFXIV inventory up

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Retain me not",
  "description": "Free your FFXIV inventory up",
  "version": "1.5.0",
  "icons": {
    "128": "icon.png"
  },
  "author": "Giuliano Riccio",
  "browser_action": {
    "default_icon": "icon.png"
  },
  "minimum_chrome_version": "45",
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "options_page": "options.html",
  "background": {
    "scripts": [
      "jquery.js",
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.finalfantasyxiv.com/lodestone/character/*/retainer/*/baggage/"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "jquery.js",
        "sanitizer.js",
        "content.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://img.finalfantasyxiv.com; object-src 'self'",
  "permissions": [
    "storage",
    "unlimitedStorage",
    "https://retainmenot.ffxivaddons.com/*"
  ]
}