SciHub Addon

SciHub Addon

【SciHub Addon】超级好用的学术科研插件,全方位提高科研工作者的科研效率,支持显示详细文章信息、期刊等级信息、大学分类信息、网页翻译功能、文章引用功能等。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "description": "__MSG_extDesc__",
  "version": "3.0.5",
  "default_locale": "zh_CN",
  "icons": {
    "48": "img/sciadd_48.png",
    "128": "img/sciadd_128.png"
  },
  "action": {
    "default_icon": "img/sciadd_128.png",
    "default_title": "SciHub Addon",
    "default_popup": "html/popup.html"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/jquery.min.js",
        "js/crypto-js.min.js",
        "js/sweetalert2.min.js",
        "js/icons.min.js",
        "chunk-vendors.js",
        "sciaddon.js"
      ],
      "css": [
        "css/style.css"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'",
    "sandbox": "sandbox allow-scripts; script-src 'self'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "img/*.gif",
        "img/*.png",
        "html/*.html"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}