NCBI Search
Search the NCBI (National Center for Biotechnology Information) library from your browser's toolbar!
Что такое NCBI Search?
NCBI Search - это расширение Chrome, разработанное b romney, и его основная функция - "Search the NCBI (National Center for Biotechnology Information) library from your browser's toolbar!".
Снимки экрана расширения
Скачать файл CRX расширения NCBI Search
Скачайте файлы расширений NCBI Search в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Type "ncbi" (lowercase is important!) in the URL box, and a search will be opened in the NCBI (National Center for Biotechnology Information) databases. At this time, advanced searching is not available in this extension. Please let me know of any feedback or enhancement requests. This is not affiliated with the NCBI.
Основная информация о расширении
Название | NCBI Search |
ID | janalkijliaejknaogckfkhdnkhlhdjl |
Официальный URL | https://chromewebstore.google.com/detail/ncbi-search/janalkijliaejknaogckfkhdnkhlhdjl |
Описание | Search the NCBI (National Center for Biotechnology Information) library from your browser's toolbar! |
Размер файла | 11.58 KB |
Количество установок | 360 |
Текущая Версия | 1.0 |
Последнее Обновление | 2018-07-19 |
Дата публикации | 2018-07-19 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | b romney |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | http://bendev.bitballoon.com |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "NCBI Search", "description": "Search the NCBI (National Center for Biotechnology Information) library from your browser's toolbar!", "version": "1.0", "manifest_version": 2, "background": { "scripts": [ "script.js" ] }, "omnibox": { "keyword": "ncbi" }, "browser_action": { "default_title": "Start NCBI Query", "default_icon": "icon.png" }, "permissions": [ "tabs" ], "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/www.ncbi.nlm.nih.gov\/; object-src 'self'" } |