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"입니다.
확장 프로그램 스크린샷
Scientific publication trends 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" ] } |