Granblue Fantasy ATK Adder

Granblue Fantasy ATK Adder

Will calculate the ATK by the weapon skills

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Granblue Fantasy ATK Adder",
  "version": "0.0.1",
  "manifest_version": 2,
  "description": "Will calculate the ATK by the weapon skills",
  "icons": {
    "48": "ic_launcher.png",
    "72": "ic_launcher2.png",
    "80": "ic_launcher3.png",
    "120": "ic_launcher4.png"
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://gbf.game.mbga.jp/*"
      ],
      "js": [
        "bower_components/jquery/dist/jquery.js",
        "scripts/contentscript2.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "storage"
  ],
  "web_accessible_resources": [
    "inject/weapon.js"
  ]
}