Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Scientific publication trends",
"description": "Find out whether a research topic is worth your time by discovering publication trends on Scopus",
"version": "3",
"manifest_version": 3,
"icons": {
"16": "\/images\/16.png",
"32": "\/images\/32.png",
"48": "\/images\/48.png",
"128": "\/images\/128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.scopus.com\/*"
],
"run_at": "document_start",
"js": [
"cherubiniScript.js"
]
}
],
"action": {
"default_icon": {
"16": "images\/16.png",
"24": "images\/32.png",
"32": "images\/32.png"
},
"default_title": "Click to see the number of scientific publications over time on a Scopus query",
"default_popup": "popup.html"
},
"background": {
"service_worker": "backgroundBadge.js",
"run_at": "document_idle"
},
"permissions": [
"storage",
"tabs"
]
}