├── .gitattributes ├── .releaserc ├── .changelogrc.js ├── .editorconfig ├── .prettierrc ├── .github └── workflows │ └── release.yml ├── package.json ├── CHANGELOG.md ├── .gitignore ├── LICENSE ├── README.md └── src └── engines.json /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.js linguist-vendored 3 | -------------------------------------------------------------------------------- /.releaserc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["semantic-release-config-gitmoji-module"] 3 | } 4 | -------------------------------------------------------------------------------- /.changelogrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | displayTypes: ['feat', 'fix', 'style', 'pref'], 3 | titleLanguage: 'zh-CN', 4 | }; 5 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # http://editorconfig.org 2 | root = true 3 | 4 | [*] 5 | indent_style = space 6 | indent_size = 2 7 | end_of_line = lf 8 | charset = utf-8 9 | trim_trailing_whitespace = true 10 | insert_final_newline = true 11 | 12 | [*.md] 13 | trim_trailing_whitespace = false 14 | 15 | [Makefile] 16 | indent_style = tab 17 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true, 3 | "trailingComma": "all", 4 | "printWidth": 80, 5 | "overrides": [ 6 | { 7 | "files": ".prettierrc", 8 | "options": { "parser": "json" } 9 | }, 10 | { 11 | "files": ".releaserc", 12 | "options": { "parser": "json" } 13 | } 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- 1 | name: Release CI 2 | on: 3 | push: 4 | branches: 5 | - master 6 | 7 | jobs: 8 | release: 9 | name: Release 10 | runs-on: ubuntu-latest 11 | steps: 12 | - uses: actions/checkout@v2 13 | - name: Release 14 | uses: cycjimmy/semantic-release-action@v2 15 | with: 16 | extra_plugins: semantic-release-config-gitmoji-module 17 | env: 18 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 19 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "zotero-engine-list", 3 | "version": "1.1.2", 4 | "description": "a zotero engine list", 5 | "private": true, 6 | "author": "Arvin Xu", 7 | "license": "MIT", 8 | "homepage": "https://github.com/arvinxx/zotero-enginelist#readme", 9 | "repository": { 10 | "type": "git", 11 | "url": "https://github.com/arvinxx/zotero-enginelist.git" 12 | }, 13 | "bugs": { 14 | "url": "https://github.com/arvinxx/zotero-enginelist/issues" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## [1.1.2](https://github.com/arvinxx/zotero-enginelist/compare/v1.1.1...v1.1.2) (2021-02-20) 4 | 5 | ### 🐛 修复 6 | 7 | - 修正标点符号 ([ec5704c](https://github.com/arvinxx/zotero-enginelist/commit/ec5704c)) 8 | 9 | ## [1.1.1](https://github.com/arvinxx/zotero-enginelist/compare/v1.1.0...v1.1.1) (2021-01-20) 10 | 11 | ### 🐛 修复 12 | 13 | - **(sci-hub)**: 修正 Sic-Hub 搜索网址 ([a69edae](https://github.com/arvinxx/zotero-enginelist/commit/a69edae)) 14 | 15 | # [1.1.0](https://github.com/arvinxx/zotero-enginelist/compare/v1.0.1...v1.1.0) (2021-01-20) 16 | 17 | ### ✨ 新特性 18 | 19 | - 支持图书馆参考咨询联盟检索引擎使用 ISBN 查询 ([050d45b](https://github.com/arvinxx/zotero-enginelist/commit/050d45b)) 20 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 4 | 5 | # dependencies 6 | node_modules 7 | /.pnp 8 | .pnp.js 9 | 10 | # testing 11 | /coverage 12 | 13 | # production 14 | /build 15 | 16 | # misc 17 | .DS_Store 18 | .env.local 19 | .env.development.local 20 | .env.test.local 21 | .env.production.local 22 | 23 | npm-debug.log* 24 | yarn-debug.log* 25 | yarn-error.log* 26 | 27 | 28 | # production 29 | **/dist 30 | /.vscode 31 | /es 32 | /lib 33 | 34 | # misc 35 | .DS_Store 36 | storybook-static 37 | npm-debug.log* 38 | yarn-error.log 39 | 40 | /coverage 41 | .idea 42 | yarn.lock 43 | package-lock.json 44 | *bak 45 | .vscode 46 | 47 | # visual studio code 48 | .history 49 | *.log 50 | functions/* 51 | lambda/mock/index.js 52 | .temp/** 53 | 54 | # umi 55 | .umi 56 | .umi-production 57 | 58 | # screenshot 59 | screenshot 60 | .firebase 61 | example/.temp/* 62 | .eslintcache 63 | 64 | dev 65 | 66 | *.crx 67 | *.pem 68 | *.zip 69 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Arvin Xu. All rights reserved. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Zotero 检索引擎清单 2 | 3 | ![][version-url] [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release) ![][license-url] 4 | 5 | [version-url]: https://img.shields.io/github/v/release/arvinxx/zotero-enginelist 6 | [license-url]: https://img.shields.io/github/license/arvinxx/zotero-enginelist 7 | 8 | 一份实用的 Zotero 检索引擎,如果对你有帮助,不妨点个 Star 哦~😉 9 | 10 | ## 简介 11 | 12 | Zotero 检索引擎可以基于 Zotero 的元数据快速跳转检索。 13 | 14 | ### 引擎简介 15 | 16 | | 检索引擎 | 简介 | 用处/领域 | 状态 | 17 | | ------------------------------------ | -------------------------------------------------------------------------------------- | -------------------------------- | ---- | 18 | | Google | 略 | 通用检索 | ✅ | 19 | | Wikipedia | 维基百科 | 通用检索 | ✅ | 20 | | Google Scholar | 谷歌学术 | 通用论文 | ✅ | 21 | | [Semantic Scholar][semantic-scholar] | 一个基于 AI 构建的论文检索工具,用来找关键论文挺方便 | 通用论文 | ✅ | 22 | | CrossRef | DOI 的综合检索网站,只要有 DOI,用这个检索一般都能找到源网站 | 通用论文 | ✅ | 23 | | ProQuest | 收录了全球各个学科的英文硕士和博士学位论文,并主要提供 1997 年之后学位论文的全文下载。 | 通用论文(硕博) | ✅ ️ | 24 | | [Sci-Hub][sci-hub] | 论文免费下载 | 通用论文 | ✅ | 25 | | ACM | 计算机 HCI 领域论文检索专用 | 计算机/HCI 论文 | ✅ | 26 | | Connected Papers | 这个比较有意思,可以根据一篇论文查询其引用关系,论文综述检索时比较有用 | 文献综述 | ✅ | 27 | | LibGen | 查英文 PDF 的唯一权威 | 英文书籍 | ✅ | 28 | | 豆瓣读书 | 一般用于录入书籍元数据 | 中文书籍 | ✅ | 29 | | 全国图书馆参考咨询联盟 | 查中文书是否有 PDF 的权威网站 | 中文书籍 | ✅ | 30 | | World Cat | 世界最大的图书馆目录网站,豆瓣上查不到的 ISBN 这上面都能查到 | 通用书籍 | ✅ | 31 | | iJournal 爱期刊 | 期刊影响因子检索 | 论文 | ✅ | 32 | | CNKI | 中文论文的检索网,但估计以后是用不到了 | 国内论文 | ✅ | 33 | | 豆瓣电影 | 搜电影,个人用不到 | 电影 | ⛔️ | 34 | | Web of Science | 没用过 | 自然科学/社会科学/人文科学类论文 | ⛔️ | 35 | 36 | [sci-hub]: https://www.yuque.com/arvinxx/research/sci-hub 37 | [semantic-scholar]: https://www.yuque.com/arvinxx/research/semantic-scholar 38 | 39 | ✅ :启用状态; ⛔️ :禁用状态 40 | 41 | ## 使用方法 42 | 43 | ### 下载 44 | 45 | 方法一:直接点击 [Code] -> [Download ZIP] 下载整个压缩包。解压后,在 `src` 文件夹下找到 `engines.json` 文件。 46 | 47 | ![](https://gw.alipayobjects.com/zos/antfincdn/b393CnzWTM/81bce7b3-8980-48f5-82a5-00d100fe4e47.png) 48 | 49 | 方法二:点击右侧 [Releases](https://github.com/arvinxx/zotero-engine-list/releases) 最新版,然后点击 `engines.json` 进行下载。 50 | 51 | ![](https://gw.alipayobjects.com/zos/antfincdn/ZvHNOnAe9j/90570276-9854-4727-8401-07c14a4931fa.png) 52 | 53 | ## 手动创建 54 | 55 | 如果因为网络问题无法下载,可以手动创建一个 `engines.json` 文本文件,然后将 [src/engines.json](https://github.com/arvinxx/zotero-engine-list/blob/master/src/engines.json) 中所有文本内容复制保存即可。 56 | 57 | ### 安装 58 | 59 | 下载完成该引擎文件后,需要将该文件放到 Zotero 库的 locate 目录下面,方可完成安装。 60 | 例如,如果 Zotero 路径为 `/Users/arvinxx/Zotero`,那么把上述文件放到以下目录: 61 | 62 | ``` 63 | /Users/arvinxx/Zotero/locate 64 | ``` 65 | 66 | 完成放置后,重启 Zotero 即可。 67 | 68 | ![](https://gw.alipayobjects.com/zos/antfincdn/qQjyxpFR6L/e07f83e8-3333-44a5-886e-4bc341ecec7d.png) 69 | 70 | ## 启用的引擎清单 71 | 72 | 本引擎清单所启用的引擎如下:(只有选中条目后方可查看) 73 | 74 | ### 图书 75 | 76 | ![](https://gw.alipayobjects.com/zos/antfincdn/1RZF5Wkvjm/4fd6a5bc-9392-48cb-891f-206d308dee43.png) 77 | 78 | ### 论文 79 | 80 | ![](https://gw.alipayobjects.com/zos/antfincdn/8mopbkZqpN/62ebb9ac-266b-4571-8265-8ef3562f7d96.png) 81 | 82 | ## 奇技淫巧 83 | 84 | ### 配置文件软连接 85 | 86 | 【适用于 macOS 和 Linux】 87 | 88 | 利用软连接将仓库中的 `engine.json` 文件链接到 Zotero 库下: 89 | 90 | ```shell 91 | ln -s /仓库路径/src/engines.json /Zotero库路径/locate/engines.json 92 | ``` 93 | 94 | 例如: 95 | 96 | ```shell 97 | ls -s /Users/arvinxx/CodeProjects/zotero-engine-list/src/engines.json /Users/arvinxx/Zotero/locate/engines.json 98 | ``` 99 | 100 | 这样就可以实现仓库中更新配置后,只需重启 Zotero 即可。 101 | 102 | 也可以用类似的方式配置文件链接到云盘,进而实现单配置文件的云端同步。 103 | 104 | ### 如何添加新引擎 105 | 106 | 请移步 [创建 Zotero 引擎](https://www.yuque.com/arvinxx/research/create-new-engine) 107 | 108 | ## LICENSE 109 | 110 | [MIT](./LICENSE) ® Arvin Xu 111 | -------------------------------------------------------------------------------- /src/engines.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "_name": "ACM", 4 | "_alias": "ACM", 5 | "_description": "全世界最大的图书目录数据库", 6 | "_icon": "https://dl.acm.org/pb-assets/head-metadata/favicon-32x32-1574252172003.png", 7 | "_hidden": false, 8 | "_urlTemplate": "https://dl.acm.org/action/doSearch?AllField={z:title}", 9 | "_urlParams": [], 10 | "_urlNamespaces": { 11 | "z": "http://www.zotero.org/namespaces/openSearch#", 12 | "": "http://a9.com/-/spec/opensearch/1.1/" 13 | }, 14 | "_iconSourceURI": "https://dl.acm.org/pb-assets/head-metadata/favicon-32x32-1574252172003.png" 15 | }, 16 | { 17 | "_name": "Google", 18 | "_alias": "Google", 19 | "_description": "Google Search", 20 | "_icon": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016230909.png", 21 | "_hidden": false, 22 | "_urlTemplate": "https://www.google.com/#q={z:title}+{rft:aufirst?}+{rft:aulast?}", 23 | "_urlParams": [], 24 | "_urlNamespaces": { 25 | "z": "http://www.zotero.org/namespaces/openSearch#" 26 | }, 27 | "_iconSourceURI": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016230909.png" 28 | }, 29 | { 30 | "_name": "D豆瓣读书", 31 | "_alias": "豆瓣读书", 32 | "_description": "豆瓣读书", 33 | "_icon": "https://www.douban.com/favicon.ico", 34 | "_hidden": false, 35 | "_urlTemplate": "https://search.douban.com/book/subject_search?search_text={z:title}&cat=1001", 36 | "_urlParams": [], 37 | "_urlNamespaces": { 38 | "z": "http://www.zotero.org/namespaces/openSearch#", 39 | "": "http://a9.com/-/spec/opensearch/1.1/" 40 | }, 41 | "_iconSourceURI": "https://www.douban.com/favicon.ico" 42 | }, 43 | { 44 | "_name": "豆瓣", 45 | "_alias": "豆瓣", 46 | "_description": "豆瓣", 47 | "_icon": "https://www.douban.com/favicon.ico", 48 | "_hidden": true, 49 | "_urlTemplate": "https://www.douban.com/search?q={z:title}", 50 | "_urlParams": [], 51 | "_urlNamespaces": { 52 | "z": "http://www.zotero.org/namespaces/openSearch#", 53 | "": "http://a9.com/-/spec/opensearch/1.1/" 54 | }, 55 | "_iconSourceURI": "https://www.douban.com/favicon.ico" 56 | }, 57 | { 58 | "_name": "豆瓣电影", 59 | "_alias": "豆瓣电影", 60 | "_description": "豆瓣电影", 61 | "_icon": "https://www.douban.com/favicon.ico", 62 | "_hidden": true, 63 | "_urlTemplate": "https://search.douban.com/movie/subject_search?search_text={z:title}&cat=1002", 64 | "_urlParams": [], 65 | "_urlNamespaces": { 66 | "z": "http://www.zotero.org/namespaces/openSearch#", 67 | "": "http://a9.com/-/spec/opensearch/1.1/" 68 | }, 69 | "_iconSourceURI": "https://www.douban.com/favicon.ico" 70 | }, 71 | { 72 | "_name": "CNKI", 73 | "_alias": "CNKI", 74 | "_description": "CNKI", 75 | "_icon": "http://kns8.cnki.net/favicon.ico", 76 | "_hidden": false, 77 | "_urlTemplate": "http://kns8.cnki.net/kns/DefaultResult/Index?dbcode=SCDB&kw={z:title}&korder=SU", 78 | "_urlParams": [], 79 | "_urlNamespaces": { 80 | "z": "http://www.zotero.org/namespaces/openSearch#", 81 | "": "http://a9.com/-/spec/opensearch/1.1/" 82 | }, 83 | "_iconSourceURI": "http://kns8.cnki.net/favicon.ico" 84 | }, 85 | { 86 | "_name": "R全国图书馆参考咨询联盟", 87 | "_alias": "国内图书馆", 88 | "_description": "全国图书馆参考咨询联盟", 89 | "_icon": "http://www.ucdrs.superlib.net/favicon.ico", 90 | "_hidden": false, 91 | "_urlTemplate": "http://book.ucdrs.superlib.net/search?Field=all&channel=search&sw={z:title}&ecode=utf-8", 92 | "_urlParams": [], 93 | "_urlNamespaces": { 94 | "z": "http://www.zotero.org/namespaces/openSearch#", 95 | "": "http://a9.com/-/spec/opensearch/1.1/" 96 | }, 97 | "_iconSourceURI": "http://www.ucdrs.superlib.net/favicon.ico" 98 | }, 99 | { 100 | "_name": "R全国图书馆参考咨询联盟(ISBN)", 101 | "_alias": "国内图书馆", 102 | "_description": "全国图书馆参考咨询联盟", 103 | "_icon": "http://www.ucdrs.superlib.net/favicon.ico", 104 | "_hidden": false, 105 | "_urlTemplate": "http://book.ucdrs.superlib.net/search?Field=all&channel=search&sw={z:ISBN}&ecode=utf-8", 106 | "_urlParams": [], 107 | "_urlNamespaces": { 108 | "z": "http://www.zotero.org/namespaces/openSearch#", 109 | "": "http://a9.com/-/spec/opensearch/1.1/" 110 | }, 111 | "_iconSourceURI": "http://www.ucdrs.superlib.net/favicon.ico" 112 | }, 113 | { 114 | "_name": "LibGen", 115 | "_alias": "LibGen", 116 | "_description": "Look up books on Library Genesis", 117 | "_icon": "http://gen.lib.rus.ec/favicon.ico", 118 | "_hidden": false, 119 | "_urlTemplate": "http://gen.lib.rus.ec/search.php?req={rft:aufirst?}+{rft:aulast?}+{rft:title?}+{z:ISBN?}", 120 | "_urlParams": [], 121 | "_method": "GET", 122 | "_urlNamespaces": { 123 | "rft": "info:ofi/fmt:kev:mtx:book", 124 | "xmlns": "http://a9.com/-/spec/opensearch/1.1/", 125 | "z": "http://www.zotero.org/namespaces/openSearch#" 126 | }, 127 | "_iconSourceURI": "http://gen.lib.rus.ec/favicon.ico" 128 | }, 129 | { 130 | "_name": "Google Patent", 131 | "_alias": "Google Scholar", 132 | "_description": "Google Patent - Search", 133 | "_icon": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201017210030.png", 134 | "_hidden": false, 135 | "_urlTemplate": "https://patents.google.com/?q=({z:title})&oq=({z:title})", 136 | "_urlParams": [], 137 | "_urlNamespaces": { 138 | "rft": "info:ofi/fmt:kev:mtx:journal", 139 | "z": "http://www.zotero.org/namespaces/openSearch#", 140 | "": "http://a9.com/-/spec/opensearch/1.1/" 141 | }, 142 | "_iconSourceURI": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201017210030.png" 143 | }, 144 | { 145 | "_name": "Semantic Scholar - DOI", 146 | "_alias": "Semantic Scholar", 147 | "_description": "Semantic Scholar", 148 | "_icon": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201017165044.png", 149 | "_hidden": false, 150 | "_urlTemplate": "https://api.semanticscholar.org/{z:DOI}", 151 | "_urlParams": [], 152 | "_urlNamespaces": { 153 | "rft": "info:ofi/fmt:kev:mtx:journal", 154 | "z": "http://www.zotero.org/namespaces/openSearch#", 155 | "": "http://a9.com/-/spec/opensearch/1.1/" 156 | }, 157 | "_iconSourceURI": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201017165044.png" 158 | }, 159 | { 160 | "_name": "World Cat", 161 | "_alias": "World Cat", 162 | "_description": "全世界最大的图书目录数据库", 163 | "_icon": "https://www.worldcat.org/favicon.ico", 164 | "_hidden": false, 165 | "_urlTemplate": "https://www.worldcat.org/search?q={z:title}&qt=owc_search", 166 | "_urlParams": [], 167 | "_urlNamespaces": { 168 | "z": "http://www.zotero.org/namespaces/openSearch#", 169 | "": "http://a9.com/-/spec/opensearch/1.1/" 170 | }, 171 | "_iconSourceURI": "https://www.worldcat.org/favicon.ico" 172 | }, 173 | { 174 | "_name": "N-Connected Papers", 175 | "_alias": "Connected Papers文献网络", 176 | "_description": "Connected Papers文献网络", 177 | "_icon": "https://www.connectedpapers.com/favicon.ico", 178 | "_hidden": false, 179 | "_urlTemplate": "https://www.connectedpapers.com/search?q={z:title}+{z:year}", 180 | "_urlParams": [], 181 | "_urlNamespaces": { 182 | "rft": "info:ofi/fmt:kev:mtx:journal", 183 | "z": "http://www.zotero.org/namespaces/openSearch#", 184 | "": "http://a9.com/-/spec/opensearch/1.1/" 185 | }, 186 | "_iconSourceURI": "https://www.connectedpapers.com/favicon.ico" 187 | }, 188 | { 189 | "_name": "CrossRef", 190 | "_alias": "CrossRef", 191 | "_description": "CrossRef Search", 192 | "_icon": "https://www.crossref.org/favicon.ico", 193 | "_hidden": false, 194 | "_urlTemplate": "http://crossref.org/openurl?{z:openURL}&pid=zter:zter321", 195 | "_urlParams": [], 196 | "_urlNamespaces": { 197 | "z": "http://www.zotero.org/namespaces/openSearch#", 198 | "": "http://a9.com/-/spec/opensearch/1.1/" 199 | }, 200 | "_iconSourceURI": "http://crossref.org/favicon.ico" 201 | }, 202 | { 203 | "_name": "Google Scholar", 204 | "_alias": "Google Scholar", 205 | "_description": "Google Scholar Search", 206 | "_icon": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016230633.png", 207 | "_hidden": false, 208 | "_urlTemplate": "http://scholar.google.com/scholar?as_q=&as_epq={z:title}&as_occt=title&as_sauthors={rft:aufirst?}+{rft:aulast?}&as_ylo={z:year?}&as_yhi={z:year?}&as_sdt=1.&as_sdtp=on&as_sdtf=&as_sdts=22&", 209 | "_urlParams": [], 210 | "_urlNamespaces": { 211 | "rft": "info:ofi/fmt:kev:mtx:journal", 212 | "z": "http://www.zotero.org/namespaces/openSearch#", 213 | "": "http://a9.com/-/spec/opensearch/1.1/" 214 | }, 215 | "_iconSourceURI": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016230633.png" 216 | }, 217 | { 218 | "_name": "Google Scholar - Title Only", 219 | "_alias": "Google Scholar", 220 | "_description": "Google Scholar Search - Title Only", 221 | "_icon": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016230633.png", 222 | "_hidden": false, 223 | "_urlTemplate": "http://scholar.google.com/scholar?as_q=&as_epq={z:title}&as_occt=title&as_sdt=1.&as_sdtp=on&as_sdtf=&as_sdts=22&", 224 | "_urlParams": [], 225 | "_urlNamespaces": { 226 | "rft": "info:ofi/fmt:kev:mtx:journal", 227 | "z": "http://www.zotero.org/namespaces/openSearch#", 228 | "": "http://a9.com/-/spec/opensearch/1.1/" 229 | }, 230 | "_iconSourceURI": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016230633.png" 231 | }, 232 | { 233 | "_name": "Web of Science", 234 | "_alias": "WOS", 235 | "_description": "Web of Science Search", 236 | "_icon": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016231207.png", 237 | "_hidden": true, 238 | "_urlTemplate": "http://ws.isiknowledge.com/cps/openurl/service?url_ver=Z39.88-2004&{z:openURL}", 239 | "_urlParams": [], 240 | "_urlNamespaces": { 241 | "rft": "info:ofi/fmt:kev:mtx:journal", 242 | "z": "http://www.zotero.org/namespaces/openSearch#" 243 | }, 244 | "_iconSourceURI": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016231207.png" 245 | }, 246 | { 247 | "_name": "WOS Citing Articles", 248 | "_alias": "WOS Citing Articles", 249 | "_description": "Web of Science Citing Articles Search", 250 | "_icon": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016231207.png", 251 | "_hidden": true, 252 | "_urlTemplate": "http://ws.isiknowledge.com/cps/openurl/service?url_ver=Z39.88-2004&svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&svc.citing=yes&{z:openURL}", 253 | "_urlParams": [], 254 | "_urlNamespaces": { 255 | "rft": "info:ofi/fmt:kev:mtx:journal", 256 | "z": "http://www.zotero.org/namespaces/openSearch#" 257 | }, 258 | "_iconSourceURI": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016231207.png" 259 | }, 260 | { 261 | "_name": "WOS Related Articles", 262 | "_alias": "WOS Related Articles", 263 | "_description": "Web of Science Related Articles Search", 264 | "_icon": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016231207.png", 265 | "_hidden": true, 266 | "_urlTemplate": "http://ws.isiknowledge.com/cps/openurl/service?url_ver=Z39.88-2004&svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&svc.related=yes&{z:openURL}", 267 | "_urlParams": [], 268 | "_urlNamespaces": { 269 | "rft": "info:ofi/fmt:kev:mtx:journal", 270 | "z": "http://www.zotero.org/namespaces/openSearch#" 271 | }, 272 | "_iconSourceURI": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016231207.png" 273 | }, 274 | { 275 | "_name": "Sci-Hub DOI", 276 | "_alias": "Sci-Hub DOI", 277 | "_description": "SciHub Lookup Lookup", 278 | "_icon": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016200912.png", 279 | "_hidden": false, 280 | "_urlTemplate": "http://sci-hub.se/{z:DOI}", 281 | "_urlParams": [], 282 | "_urlNamespaces": { 283 | "z": "http://www.zotero.org/namespaces/openSearch#" 284 | }, 285 | "_iconSourceURI": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016200912.png" 286 | }, 287 | { 288 | "_name": "Sci-Hub URL", 289 | "_alias": "Sci-Hub URL", 290 | "_description": "SciHub URL Lookup", 291 | "_icon": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016200912.png", 292 | "_hidden": false, 293 | "_urlTemplate": "http://sci-hub.se/{z:url}", 294 | "_urlParams": [], 295 | "_urlNamespaces": { 296 | "z": "http://www.zotero.org/namespaces/openSearch#" 297 | }, 298 | "_iconSourceURI": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016200912.png" 299 | }, 300 | { 301 | "_name": "Connected Papers(手动输入doi)", 302 | "_alias": "Connected Papers文献网络", 303 | "_description": "Connected Papers文献网络", 304 | "_icon": "https://www.connectedpapers.com/favicon.ico", 305 | "_hidden": false, 306 | "_urlTemplate": "https://www.connectedpapers.com", 307 | "_urlParams": [], 308 | "_urlNamespaces": { 309 | "rft": "info:ofi/fmt:kev:mtx:journal", 310 | "z": "http://www.zotero.org/namespaces/openSearch#", 311 | "": "http://a9.com/-/spec/opensearch/1.1/" 312 | }, 313 | "_iconSourceURI": "https://www.connectedpapers.com/favicon.ico" 314 | }, 315 | { 316 | "_name": "Connected Papers(Title Only)", 317 | "_alias": "Connected Papers文献网络", 318 | "_description": "Connected Papers文献网络", 319 | "_icon": "https://www.connectedpapers.com/favicon.ico", 320 | "_hidden": false, 321 | "_urlTemplate": "https://www.connectedpapers.com/search?q={z:title}", 322 | "_urlParams": [], 323 | "_urlNamespaces": { 324 | "rft": "info:ofi/fmt:kev:mtx:journal", 325 | "z": "http://www.zotero.org/namespaces/openSearch#", 326 | "": "http://a9.com/-/spec/opensearch/1.1/" 327 | }, 328 | "_iconSourceURI": "https://www.connectedpapers.com/favicon.ico" 329 | }, 330 | { 331 | "_name": "iJournal期刊影响因子(首选1)", 332 | "_alias": "iJournal期刊影响因子", 333 | "_description": "期刊影响因子查询(仅支持搜索ISSN)", 334 | "_icon": "https://ijournal.topeditsci.com/favicon.ico", 335 | "_hidden": false, 336 | "_urlTemplate": "https://ijournal.topeditsci.com/search?keywordType=title&keyword={rft:jtitle}&ifStart2019=&ifEnd2019=&jcr=&sub=&isDomestic=&selfCitingRate=all&compatriotRate=all&totalReviewRatio=all&categoryId=&pageNum=1&order=&orderType=", 337 | "_urlParams": [], 338 | "_urlNamespaces": { 339 | "rft": "info:ofi/fmt:kev:mtx:journal", 340 | "z": "http://www.zotero.org/namespaces/openSearch#", 341 | "": "http://a9.com/-/spec/opensearch/1.1/" 342 | }, 343 | "_iconSourceURI": "https://ijournal.topeditsci.com/favicon.ico" 344 | }, 345 | { 346 | "_name": "JustScience影响因子(首选2)", 347 | "_alias": "JustScience期刊影响因子(首选2)", 348 | "_description": "JustScience期刊影响因子(首选2)", 349 | "_icon": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201017105103.png", 350 | "_hidden": false, 351 | "_urlTemplate": "https://sci.justscience.cn/index.php?q={rft:jtitle}&sci=1", 352 | "_urlParams": [], 353 | "_urlNamespaces": { 354 | "rft": "info:ofi/fmt:kev:mtx:journal", 355 | "z": "http://www.zotero.org/namespaces/openSearch#", 356 | "": "http://a9.com/-/spec/opensearch/1.1/" 357 | }, 358 | "_iconSourceURI": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201017105103.png" 359 | }, 360 | { 361 | "_name": "中文期刊搜索", 362 | "_alias": "中文期刊搜索", 363 | "_description": "JustScience中文期刊搜索", 364 | "_icon": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201017105103.png", 365 | "_hidden": false, 366 | "_urlTemplate": "https://sci.justscience.cn/index.php?q={rft:jtitle}&sci=0", 367 | "_urlParams": [], 368 | "_urlNamespaces": { 369 | "rft": "info:ofi/fmt:kev:mtx:journal", 370 | "z": "http://www.zotero.org/namespaces/openSearch#", 371 | "": "http://a9.com/-/spec/opensearch/1.1/" 372 | }, 373 | "_iconSourceURI": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201017105103.png" 374 | }, 375 | { 376 | "_name": "Letpub期刊搜索", 377 | "_alias": "Letpub期刊搜索", 378 | "_description": "Letpub期刊搜索(仅支持搜索ISSN)", 379 | "_icon": "https://www.letpub.com.cn/favicon.ico", 380 | "_hidden": false, 381 | "_urlTemplate": "http://www.letpub.com.cn/index.php?page=journalapp&view=search&searchname={rft:jtitle}", 382 | "_urlParams": [], 383 | "_urlNamespaces": { 384 | "rft": "info:ofi/fmt:kev:mtx:journal", 385 | "z": "http://www.zotero.org/namespaces/openSearch#", 386 | "": "http://a9.com/-/spec/opensearch/1.1/" 387 | }, 388 | "_iconSourceURI": "https://www.letpub.com.cn/favicon.ico" 389 | }, 390 | { 391 | "_name": "期刊影响因子查询", 392 | "_alias": "期刊影响因子查询", 393 | "_description": "期刊影响因子查询(仅支持搜索ISSN)", 394 | "_icon": "https://www.xueky.com/favicon.ico", 395 | "_hidden": false, 396 | "_urlTemplate": "https://www.xueky.com/rank.php?qk={rft:jtitle}", 397 | "_urlParams": [], 398 | "_urlNamespaces": { 399 | "rft": "info:ofi/fmt:kev:mtx:journal", 400 | "z": "http://www.zotero.org/namespaces/openSearch#", 401 | "": "http://a9.com/-/spec/opensearch/1.1/" 402 | }, 403 | "_iconSourceURI": "https://www.xueky.com/favicon.ico" 404 | }, 405 | { 406 | "_name": "期刊近五年影响因子", 407 | "_alias": "期刊近五年影响因子", 408 | "_description": "期刊近五年影响因子", 409 | "_icon": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016200307.png", 410 | "_hidden": false, 411 | "_urlTemplate": "http://www.greensci.net/search?kw={rft:jtitle}", 412 | "_urlParams": [], 413 | "_urlNamespaces": { 414 | "rft": "info:ofi/fmt:kev:mtx:journal", 415 | "z": "http://www.zotero.org/namespaces/openSearch#", 416 | "": "http://a9.com/-/spec/opensearch/1.1/" 417 | }, 418 | "_iconSourceURI": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016200307.png" 419 | }, 420 | { 421 | "_name": "Unpaywall", 422 | "_alias": "Unpaywall", 423 | "_description": "Unpaywall Lookup", 424 | "_icon": "https://oadoi.org/static/img/favicon.png", 425 | "_hidden": false, 426 | "_urlTemplate": "https://oadoi.org/{z:DOI}", 427 | "_urlParams": [], 428 | "_urlNamespaces": { 429 | "z": "http://www.zotero.org/namespaces/openSearch#" 430 | }, 431 | "_iconSourceURI": "https://oadoi.org/static/img/favicon.png" 432 | }, 433 | { 434 | "_name": "Wikipedia", 435 | "_alias": "Wikipedia", 436 | "_description": "Wikipedia", 437 | "_icon": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016232045.png", 438 | "_hidden": false, 439 | "_urlTemplate": "https://zh.wikipedia.org/wiki/{z:title}", 440 | "_urlParams": [], 441 | "_urlNamespaces": { 442 | "z": "http://www.zotero.org/namespaces/openSearch#", 443 | "": "http://a9.com/-/spec/opensearch/1.1/" 444 | }, 445 | "_iconSourceURI": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016232045.png" 446 | }, 447 | { 448 | "_name": "ProQuest", 449 | "_alias": "ProQuest", 450 | "_description": "ProQuest Search", 451 | "_icon": "https://www.proquest.com/favicon.ico", 452 | "_hidden": false, 453 | "_urlTemplate": "http://proquest.umi.com/pqdweb?SQ=TI(+{z:title}+)+YR(+{z:year?}+)&RQT=305&querySyntax=PQ&searchInterface=1&moreOptState=CLOSED&TS=1139706667&JSEnabled=1&DBId=-1", 454 | "_urlParams": [], 455 | "_urlNamespaces": { 456 | "rft": "info:ofi/fmt:kev:mtx:journal", 457 | "z": "http://www.zotero.org/namespaces/openSearch#" 458 | }, 459 | "_iconSourceURI": "http://www.proquest.com/favicon.ico" 460 | }, 461 | { 462 | "_name": "SooPAT专利搜索", 463 | "_alias": "SooPAT专利搜索", 464 | "_description": "SooPAT专利搜索", 465 | "_icon": "http://www.soopat.com/favicon.ico", 466 | "_hidden": true, 467 | "_urlTemplate": "http://www.soopat.com/Home/Result?SearchWord={z:title}&FMZL=Y&SYXX=Y&WGZL=Y&FMSQ=Y", 468 | "_urlParams": [], 469 | "_urlNamespaces": { 470 | "z": "http://www.zotero.org/namespaces/openSearch#", 471 | "": "http://a9.com/-/spec/opensearch/1.1/" 472 | }, 473 | "_iconSourceURI": "http://www.soopat.com/favicon.ico" 474 | } 475 | ] 476 | --------------------------------------------------------------------------------