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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Find out whether a research topic is worth your time by discovering publication trends on Scopus"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Scientific publication trends एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
ID | pogpfnhkhpgeknlfbfibdmpadogonkod |
आधिकारिक URL | 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" ] } |