Academic Question [HEP/GR Tools]

Academic Question [HEP/GR Tools]

Prototype extension providing quick opening of arXiv PDFs from their IDs, and a popup INSPIRE search in Chrome.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Academic Question [HEP/GR Tools]",
  "short_name": "Academic Question",
  "description": "Prototype extension providing quick opening of arXiv PDFs from their IDs, and a popup INSPIRE search in Chrome.",
  "author": "Carl Turner [suchideas.com]",
  "version": "0.2",
  "icons": {
    "32": "icon.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "permissions": [
    "http://*.inspirehep.net/",
    "downloads",
    "storage",
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_script.js"
      ],
      "all_frames": true
    }
  ]
}