mySpires

mySpires

An unofficial assistant for INSPIRE, arXiv, and NASA/ADS.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "mySpires",
  "description": "An unofficial assistant for INSPIRE, arXiv, and NASA/ADS.",
  "version": "1.1",
  "author": "Akash Jain",
  "homepage_url": "https://myspires.ajainphysics.com",
  "icons": {
    "16": "icons/mySpires16.png",
    "19": "icons/mySpires19.png",
    "48": "icons/mySpires48.png",
    "128": "icons/mySpires128.png"
  },
  "background": {
    "scripts": [
      "dependencies/browser-polyfill.js",
      "dependencies/jquery-3.2.1.min.js",
      "mySpires/mySpires.js",
      "js/tools.js",
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icons/mySpires19.png",
    "default_popup": "popup.html"
  },
  "commands": {
    "toggle-cite-window": {
      "suggested_key": {
        "default": "Ctrl+Shift+C",
        "mac": "MacCtrl+Shift+C"
      },
      "description": "Open Citation Window"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://inspirehep.net/*",
        "*://ui.adsabs.harvard.edu/*",
        "*://arxiv.org/search*",
        "*://arxiv.org/list/*",
        "*://arxiv.org/abs/*",
        "*://www.overleaf.com/project/*"
      ],
      "css": [
        "dependencies/bootstrap-buttons.css",
        "dependencies/awesomplete.css",
        "dependencies/jquery-ui.min.css",
        "mySpires/mySpires.css",
        "css/plugin.css",
        "css/content.css"
      ],
      "js": [
        "dependencies/browser-polyfill.js",
        "dependencies/jquery-3.2.1.min.js",
        "dependencies/jquery-ui.min.js",
        "dependencies/awesomplete.js",
        "mySpires/mySpires.js",
        "mySpires/mySpires_components.js",
        "js/tools.js",
        "js/content.js"
      ]
    }
  ],
  "permissions": [
    "https://inspirehep.net/*",
    "https://ui.adsabs.harvard.edu/*",
    "*://myspires.ajainphysics.com/*",
    "*://arxiv.org/*",
    "*://www.overleaf.com/*",
    "activeTab",
    "clipboardRead",
    "clipboardWrite"
  ],
  "web_accessible_resources": [
    "fonts/*.ttf",
    "icons/mySpires48.png"
  ],
  "applications": {
    "gecko": {
      "id": "{0971bf29-05ec-47da-874e-b4c3c719bd4a}",
      "update_url": "https://myspires.ajainphysics.com/bin/updates.json"
    }
  }
}