Inspect and view changes in ScholarX 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "ScholarX",
"version": "1.0",
"description": "Enhance your Google Scholar and PubMed experience with automatic display of detailed publication information.",
"permissions": [
"storage"
],
"host_permissions": [
"https://pubmed.ncbi.nlm.nih.gov/*",
"*://scholar.google.com/*",
"https://api.crossref.org/*",
"https://scholarx.up.railway.app/*"
],
"action": {
"default_icon": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"default_popup": "popup/popup.html"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*://scholar.google.com/*"
],
"js": [
"options/settings.js",
"googleScholar/scholarUtils.js",
"googleScholar/scholarUI.js",
"googleScholar/scholar.js"
]
},
{
"matches": [
"https://pubmed.ncbi.nlm.nih.gov/*"
],
"exclude_matches": [
"https://pubmed.ncbi.nlm.nih.gov/*/"
],
"js": [
"options/settings.js",
"pubMed/pubmed.js"
]
},
{
"matches": [
"https://pubmed.ncbi.nlm.nih.gov/*/"
],
"js": [
"options/settings.js",
"pubMed/pubmedDetail.js"
]
}
],
"options_page": "options/options.html"
}