Sento - MyAnimeList Updater

Sento - MyAnimeList Updater

Automatically look up anime series to add/update on MyAnimeList

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Sento - MyAnimeList Updater",
  "description": "Automatically look up anime series to add/update on MyAnimeList",
  "version": "1.31",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "jquery-1.12.1.min.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "images/icon.png",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "images/*"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "permissions": [
    "storage",
    "http://myanimelist.net/*"
  ],
  "icons": {
    "16": "images/icon.png",
    "48": "images/icon.png",
    "128": "images/icon.png"
  }
}