Examine source code of PaperPop: Impact Factors & Paper Popularity for PubMed, Google Scholar

Inspect and view changes in PaperPop: Impact Factors & Paper Popularity for PubMed, Google Scholar source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "__MSG_extensionName__",
  "version": "1.3",
  "description": "__MSG_extensionDescription__",
  "default_locale": "en",
  "permissions": [
    "storage",
    "tabs"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "background": {
    "service_worker": "js/background.bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://pubmed.ncbi.nlm.nih.gov/*"
      ],
      "js": [
        "libs/xlsx.mini.min.js",
        "js/common.js",
        "enhancers/pubmed.js"
      ],
      "css": [
        "style.css"
      ]
    },
    {
      "matches": [
        "https://scholar.google.com/scholar*"
      ],
      "js": [
        "libs/xlsx.mini.min.js",
        "js/common.js",
        "enhancers/googleScholar.js"
      ],
      "css": [
        "style.css"
      ]
    },
    {
      "matches": [
        "https://kns.cnki.net/kns8s/*"
      ],
      "js": [
        "js/common.js",
        "enhancers/cnki.js"
      ],
      "css": [
        "style.css"
      ]
    },
    {
      "matches": [
        "https://*.webofscience.com/*",
        "https://*.clarivate.com/*",
        "https://*.clarivate.cn/*"
      ],
      "js": [
        "js/common.js",
        "enhancers/wos.js"
      ],
      "css": [
        "style.css"
      ]
    },
    {
      "matches": [
        "https://*.sciencedirect.com/*"
      ],
      "js": [
        "js/common.js",
        "enhancers/scienceDirect.js"
      ],
      "css": [
        "style.css"
      ]
    },
    {
      "matches": [
        "https://*.engineeringvillage.com/*"
      ],
      "js": [
        "js/common.js",
        "enhancers/engineeringVillage.js"
      ],
      "css": [
        "style.css"
      ]
    },
    {
      "matches": [
        "https://*.edu.cn/*"
      ],
      "js": [
        "js/common.js",
        "enhancers/wos.js",
        "enhancers/scienceDirect.js",
        "enhancers/engineeringVillage.js",
        "enhancers/cnki.js"
      ],
      "css": [
        "style.css"
      ]
    },
    {
      "matches": [
        "https://*.yuntsg.com/*"
      ],
      "js": [
        "js/common.js",
        "enhancers/yuntsg.js"
      ],
      "css": [
        "style.css"
      ]
    },
    {
      "matches": [
        "https://xueshu.baidu.com/*"
      ],
      "js": [
        "js/common.js",
        "enhancers/baiduXueshu.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "action": {
    "default_popup": "options.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "data/*",
        "_locales/*/messages.json"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "icons/*.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}