PaperPop - Journal Ranking Viewer Firefox

Examine source code of PaperPop - Journal Ranking Viewer

By: gnixuw Add-on
Inspect and view changes in PaperPop - Journal Ranking Viewer source codes across current and past versions
Please login to examine the extension's source code.
manifest.json
{
  "manifest_version": 3,
  "name": "__MSG_extensionName__",
  "version": "1.7.0.1",
  "description": "__MSG_extensionDescription__",
  "default_locale": "en",
  "permissions": [
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "https://*.aliyuncs.com/*",
    "https://*.byteslink.cn/*"
  ],
  "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": {
    "scripts": [
      "js/background.bundle.js"
    ],
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://pubmed.ncbi.nlm.nih.gov/*"
      ],
      "js": [
        "src/themes/theme-manager.js",
        "libs/xlsx.mini.min.js",
        "js/common.js",
        "js/journal-enhancer.js",
        "js/sort-excel-enhancer.js",
        "js/result-analyzer.js",
        "js/analysis-panel.js",
        "js/altmetric-manager.js",
        "js/permission-guard.js",
        "enhancers/pubmed.js"
      ],
      "css": [
        "style.css"
      ]
    },
    {
      "matches": [
        "https://scholar.google.com/*",
        "https://scholar.google.com.tw/*",
        "https://scholar.google.com.hk/*",
        "https://scholar.google.co.uk/*",
        "https://scholar.google.co.jp/*",
        "https://scholar.google.co.kr/*",
        "https://scholar.google.de/*",
        "https://scholar.google.fr/*",
        "https://scholar.google.it/*",
        "https://scholar.google.es/*",
        "https://scholar.google.com.au/*",
        "https://scholar.google.ca/*",
        "https://scholar.google.com.br/*"
      ],
      "js": [
        "src/themes/theme-manager.js",
        "libs/xlsx.mini.min.js",
        "js/common.js",
        "js/journal-enhancer.js",
        "js/sort-excel-enhancer.js",
        "js/result-analyzer.js",
        "js/analysis-panel.js",
        "js/altmetric-manager.js",
        "js/permission-guard.js",
        "enhancers/googleScholar.js",
        "enhancers/googleScholarCitations.js"
      ],
      "css": [
        "style.css"
      ]
    },
    {
      "matches": [
        "https://*.cnki.net/*"
      ],
      "js": [
        "src/themes/theme-manager.js",
        "js/common.js",
        "js/journal-enhancer.js",
        "enhancers/cnki.js"
      ],
      "css": [
        "style.css"
      ]
    },
    {
      "matches": [
        "https://*.webofscience.com/*",
        "https://*.clarivate.com/*",
        "https://*.clarivate.cn/*"
      ],
      "js": [
        "src/themes/theme-manager.js",
        "js/common.js",
        "js/journal-enhancer.js",
        "js/altmetric-manager.js",
        "enhancers/wos.js"
      ],
      "css": [
        "style.css"
      ]
    },
    {
      "matches": [
        "https://*.sciencedirect.com/*"
      ],
      "js": [
        "src/themes/theme-manager.js",
        "js/common.js",
        "js/journal-enhancer.js",
        "js/altmetric-manager.js",
        "enhancers/scienceDirect.js"
      ],
      "css": [
        "style.css"
      ]
    },
    {
      "matches": [
        "https://*.engineeringvillage.com/*"
      ],
      "js": [
        "src/themes/theme-manager.js",
        "js/common.js",
        "js/journal-enhancer.js",
        "enhancers/engineeringVillage.js"
      ],
      "css": [
        "style.css"
      ]
    },
    {
      "matches": [
        "https://*.yuntsg.com/*"
      ],
      "js": [
        "src/themes/theme-manager.js",
        "js/common.js",
        "js/journal-enhancer.js",
        "enhancers/yuntsg.js"
      ],
      "css": [
        "style.css"
      ]
    },
    {
      "matches": [
        "https://xueshu.baidu.com/*"
      ],
      "js": [
        "src/themes/theme-manager.js",
        "js/common.js",
        "js/journal-enhancer.js",
        "js/altmetric-manager.js",
        "enhancers/baiduXueshu.js"
      ],
      "css": [
        "style.css"
      ]
    },
    {
      "matches": [
        "https://ieeexplore.ieee.org/*"
      ],
      "js": [
        "src/themes/theme-manager.js",
        "js/common.js",
        "js/journal-enhancer.js",
        "js/altmetric-manager.js",
        "enhancers/ieee.js"
      ],
      "css": [
        "style.css"
      ]
    },
    {
      "matches": [
        "https://*.edu.cn/*",
        "https://*.hku.hk/*"
      ],
      "js": [
        "src/themes/theme-manager.js",
        "libs/xlsx.mini.min.js",
        "js/common.js",
        "js/journal-enhancer.js",
        "js/sort-excel-enhancer.js",
        "js/result-analyzer.js",
        "js/analysis-panel.js",
        "js/permission-guard.js",
        "js/altmetric-manager.js",
        "enhancers/wos.js",
        "enhancers/scienceDirect.js",
        "enhancers/engineeringVillage.js",
        "enhancers/cnki.js",
        "enhancers/ieee.js",
        "enhancers/pubmed.js",
        "enhancers/baiduXueshu.js",
        "enhancers/googleScholar.js",
        "enhancers/yuntsg.js",
        "enhancers/googleScholarCitations.js"
      ],
      "css": [
        "style.css"
      ]
    },
    {
      "matches": [
        "https://*.byteslink.cn/*"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_popup": "options.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "src/themes/*",
        "src/styles/*",
        "data/*",
        "_locales/*/messages.json",
        "icons/*",
        "settings.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "gnixuw@gmail.com"
    }
  }
}

Best PaperPop - Journal Ranking Viewer Alternatives

Here are some Firefox add-ons that are similar to PaperPop - Journal Ranking Viewer: