rpjeeves

rpjeeves

A browser extension to help GMs spend more time telling a compelling story, and less time being a computer.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "rpjeeves",
  "version": "0.0.3",
  "manifest_version": 2,
  "description": "A browser extension to help GMs spend more time telling a compelling story, and less time being a computer.",
  "homepage_url": "http://github.com/nihakue/rpjeeves",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "src/bg/background.js"
    ],
    "persistent": true
  },
  "options_page": "src/options_custom/index.html",
  "permissions": [],
  "omnibox": {
    "keyword": "jeeves"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*bestiary*",
        "*://*/*Bestiary*",
        "*://*/*monsters*",
        "*://*/*Monsters*",
        "*://*/*monster*",
        "*://*/*Monster*"
      ],
      "js": [
        "js/jquery/jquery-2.1.1.min.js",
        "js/bootstrap/bootstrap.min.js",
        "src/inject/inject.js"
      ]
    },
    {
      "matches": [
        "*://*/*bestiary*",
        "*://*/*Bestiary*",
        "*://*/*monsters*",
        "*://*/*Monsters*",
        "*://*/*monster*",
        "*://*/*Monster*"
      ],
      "css": [
        "src/inject/inject.css",
        "css/bootstrap.min.css"
      ]
    }
  ]
}