Collegiate Scholar Link

Collegiate Scholar Link

This extension makes better use of Google Scholar for scholars.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Collegiate Scholar Link",
  "short_name": "CSLink",
  "author": "[email protected]",
  "version": "0.0.7",
  "description": "This extension makes better use of Google Scholar for scholars.",
  "icons": {
    "16": "icons/ico-16.png",
    "39": "icons/ico-39.png",
    "48": "icons/ico-48.png",
    "128": "icons/ico-128.png",
    "256": "icons/ico-256.png"
  },
  "background": {
    "scripts": [
      "js/proxy_bg.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://scholar.google.com/*"
      ],
      "js": [
        "js/jquery-1.12.0.min.js",
        "js/bootstrap.min.js",
        "js/proxy.js",
        "js/proxy-opt.js"
      ],
      "css": [
        "css/bootstrap.min.css"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "https://*/*",
    "http://*/*"
  ],
  "page_action": {
    "default_name": "Collegiate Scholar Link",
    "default_icon": "icons/ico-39.png",
    "default_popup": "pages/popup.html"
  },
  "web_accessible_resources": [
    "icons/*.png",
    "pages/*.html"
  ],
  "manifest_version": 2
}