Artint2e enhancer

Artint2e enhancer

Extension to make 'Artificial Intelligence: Foundations of Computational Agents, 2nd Edition' more readable on the web.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Artint2e enhancer",
  "version": "0.1.3",
  "manifest_version": 2,
  "description": "Extension to make 'Artificial Intelligence: Foundations of Computational Agents,  2nd Edition' more readable on the web.",
  "homepage_url": "http://twitter.com/hrjakobsen",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "browser_action": {
    "default_icon": "icons/icon48.png"
  },
  "default_locale": "en",
  "permissions": [
    "https://artint.info/2e/html/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://artint.info/2e/html/*"
      ],
      "css": [
        "src/inject/inject.css"
      ],
      "js": [
        "js/jquery/jquery.min.js",
        "src/inject/inject.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "css/font/cmunrm.woff",
    "css/font/cmunbx.woff"
  ]
}