GoingMed
Pubmed 影响因子显示
Wat is GoingMed?
GoingMed is een Chrome-extensie ontwikkeld door https://bm-com.com, en de belangrijkste functie is "Pubmed 影响因子显示".
Extensie Screenshots
Download het CRX-bestand van de extensie GoingMed
Download GoingMed-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
GoingMed插件使用GoingPub团队和MikerTom 联合开发的一款插件。该插件可以自动加载 PubMed 期刊的影响因子,帮助用户筛选有用的期刊,还可以在详情页面一键下载sci-hub论文。 应用官网:https://www.goingpub.com/ 联系方式:[email protected] 更多插件:https://bm-com.com/
Basisinformatie over de Extensie
Naam | GoingMed |
ID | hopmhonnajbjjdkagglbfmffmdhocbmf |
Officiële URL | https://chromewebstore.google.com/detail/goingmed/hopmhonnajbjjdkagglbfmffmdhocbmf |
Beschrijving | Pubmed 影响因子显示 |
Bestandsgrootte | 69.56 KB |
Aantal Installaties | 738 |
Huidige Versie | 1.1.3 |
Laatst Bijgewerkt | 2024-01-12 |
Publicatiedatum | 2023-01-29 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | https://bm-com.com |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://www.goingpub.com/ |
URL van de Privacybeleid Pagina | http://106.12.127.15/privacy.html |
Ondersteunde Talen | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "1.1.3", "name": "GoingMed", "description": "Pubmed \u5f71\u54cd\u56e0\u5b50\u663e\u793a", "action": { "default_popup": "popup.html", "default_icon": { "32": "image\/128.png" } }, "icons": { "16": "image\/16.png", "48": "image\/48.png", "128": "image\/128.png" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "*:\/\/pubmed.ncbi.nlm.nih.gov\/*" ], "js": [ "js\/jquery.min.1.8.js", "js\/common.js", "js\/pubmed.js" ], "css": [ "css\/main.css" ], "run_at": "document_end" } ], "background": { "service_worker": "js\/background.js", "type": "module", "matches": [ "*:\/\/pubmed.ncbi.nlm.nih.gov\/*" ] }, "web_accessible_resources": [ { "resources": [ "image\/*.png" ], "matches": [ "*:\/\/pubmed.ncbi.nlm.nih.gov\/*" ] } ] } |