Scientific publication trends

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

什麼是Scientific publication trends?

Scientific publication trends是由bettersearchsearch開發的Chrome擴展程式,該擴展的主要功能是“Find out whether a research topic is worth your time by discovering publication trends on Scopus”。

擴展截圖

screenshot
screenshot

下載Scientific publication trends擴展crx文件

下載Scientific publication trends擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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!                    

擴展基本資訊

名稱 Scientific publication trends Scientific publication trends
ID pogpfnhkhpgeknlfbfibdmpadogonkod
官方網址 https://chromewebstore.google.com/detail/scientific-publication-tr/pogpfnhkhpgeknlfbfibdmpadogonkod
簡介 Find out whether a research topic is worth your time by discovering publication trends on Scopus
檔案大小 129 KB
安裝次數 71
目前版本 3
更新時間 2022-10-23
上架時間 2022-09-28
評分 5.00/5 共 4 次評分
開發者 bettersearchsearch
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
    ]
}