Smart Choice

Smart Choice

The smart way to choose your books is now on the chrome store!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Smart Choice",
  "version": "0.0.8",
  "description": "The smart way to choose your books is now on the chrome store!",
  "icons": {
    "16": "images/[email protected]",
    "48": "images/Logo128px.png",
    "128": "images/Logo128px.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/polyfill.js",
        "constants.js",
        "lib/jquery-2.1.3.min.js",
        "js/content.js",
        "js/books-authors-service.js",
        "lib/xml2json.js"
      ],
      "css": [
        "css/frame.css"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'sha256-t9s17SmnH/zBwm+nQhdIH9xJ5zCXWiuPiwj19J1b3+Y=' https://www.googletagmanager.com https://www.google-analytics.com",
  "browser_action": {
    "default_icon": "images/[email protected]"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "templates/*",
    "js/*",
    "css/*",
    "images/*"
  ]
}