Request Article

Request Article

This extension allows users of the Groningen University Library to request research articles directly from their authors

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Request Article",
  "version": "0.8",
  "author": "Groningen University Library",
  "description": "This extension allows users of the Groningen University Library to request research articles directly from their authors",
  "icons": {
    "16": "images/icons/ubg_white_16.png",
    "48": "images/icons/ubg_white_arms_48.png",
    "128": "images/icons/ubg_white_128.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "activeTab",
    "webRequest",
    "http://*/*",
    "https://*/*",
    "http://129.125.136.109/*",
    "https://129.125.136.109/*"
  ],
  "browser_action": {
    "default_icon": "images/icons/icon_16.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://rug.on.worldcat.org/*",
        "https://rug.on.worldcat.org/atoztitles/link/*",
        "https://rug.on.worldcat.org/oclc/*"
      ],
      "css": [
        "css/styles.css",
        "css/notification.css"
      ],
      "js": [
        "jquery-1.11.3.min.js",
        "logger.js",
        "notification.js",
        "coins.js",
        "oclc.single.item.js",
        "oclc.js",
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "web_accessible_resources": [
    "images/icons/ubg_white_128.png",
    "images/icons/close.png"
  ]
}