Scientific publication trends

Find out whether a research topic is worth your time by discovering publication trends on Scopus

Was ist Scientific publication trends?

Scientific publication trends ist eine Chrome-Erweiterung, die von bettersearchsearch entwickelt wurde, und ihr Hauptmerkmal ist "Find out whether a research topic is worth your time by discovering publication trends on Scopus".

Erweiterungsscreenshots

screenshot
screenshot

Scientific publication trends-Erweiterungs-CRX-Datei herunterladen

Laden Sie Scientific publication trends-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension shows research trends by instantly plotting the number of publications over time of a certain Scopus query. The numbers shown on the charts are the Scopus output of your query counted by year, together with the normalized total number of world papers. 
With Scientific Publication Trends you can instantly see whether your research topic is growing more or less than the average. You can discover for example that autonomous driving research is booming. You can find out if a topic will likely grow for the next years or if it has already peaked. 
Whether you are an academic researcher, a wanna be entrepreneur, a journalist, a venture capital firm, or a curios citizen, this extension is for you! It requires no special permissions and is free to use.
If you find any problem, please report it in the appropriate section before leaving a negative review, I will do my best to fix it!                    

Grundlegende Informationen zur Erweiterung

Name Scientific publication trends Scientific publication trends
ID pogpfnhkhpgeknlfbfibdmpadogonkod
Offizielle URL https://chromewebstore.google.com/detail/scientific-publication-tr/pogpfnhkhpgeknlfbfibdmpadogonkod
Beschreibung Find out whether a research topic is worth your time by discovering publication trends on Scopus
Dateigröße 129 KB
Installationsanzahl 71
Aktuelle Version 3
Letztes Update 2022-10-23
Veröffentlichungsdatum 2022-09-28
Bewertung 5.00/5 Insgesamt 4 Bewertungen
Entwickler bettersearchsearch
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "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"
    ]
}