FFLogstone

FFLogstone

Add link to FFLogs in Lodestone Character page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "FFLogstone",
  "version": "1.0.4",
  "manifest_version": 2,
  "description": "Add link to FFLogs in Lodestone Character page",
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "default_icon": "images/icon.png",
    "default_title": "Config FFLogstone",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.finalfantasyxiv.com/lodestone/character/*"
      ],
      "js": [
        "js/main.js"
      ],
      "css": [
        "css/button.css"
      ],
      "run_at": "document_end"
    }
  ]
}