Alma Hacks (Beta)

Alma Hacks (Beta)

Plugin for Alma printing, CSS, Javascript, and other customizations

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Alma Hacks (Beta)",
  "short_name": "alma-hacks",
  "version": "0.0.7",
  "description": "Plugin for Alma printing, CSS, Javascript, and other customizations",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "author": "Joshua Welker <[email protected]>",
  "permissions": [
    "activeTab",
    "storage",
    "contextMenus",
    "https://api-na.hosted.exlibrisgroup.com/"
  ],
  "background": {
    "scripts": [
      "scripts/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.alma.exlibrisgroup.com/*"
      ],
      "js": [
        "scripts/foreground.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "css/maps/*",
    "scripts/*"
  ]
}