Open in ImageJ.JS
Adds buttons to GitHub and Zenodo *.ijm and *.tif items and a context menu command to open images in ImageJ.JS
什么是Open in ImageJ.JS?
Open in ImageJ.JS是由Jerome Mutterer开发的Chrome扩展程序,该扩展的主要功能是“Adds buttons to GitHub and Zenodo *.ijm and *.tif items and a context menu command to open images in ImageJ.JS”。
扩展截图
下载Open in ImageJ.JS扩展crx文件
下载Open in ImageJ.JS扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This Chrome extension tries to add 'Open in ImageJ.JS' buttons next to *.ijm or *.tif items in datasets hosted GitHub Gist, GitHub Repositories, or Zenodo.org and pages from the Human Protein Atlas. ImageJ.JS is an version of the popular ImageJ image processing software. Credits: Many thanks to Wei Ouyang and ImJoy Team for ImageJ.JS and to Wayne Rasband for ImageJ. The code for this extension is adapted from the 'Git History Browser Extension' by Luis Reinoso.
扩展基本信息
名称 | Open in ImageJ.JS |
ID | gneikkcbnfohdpmjidceolbhpigpokij |
官方URL | https://chromewebstore.google.com/detail/open-in-imagejjs/gneikkcbnfohdpmjidceolbhpigpokij |
简介 | Adds buttons to GitHub and Zenodo *.ijm and *.tif items and a context menu command to open images in ImageJ.JS |
文件大小 | 159 KB |
安装次数 | 368 |
当前版本 | 1.0.4 |
更新时间 | 2020-11-12 |
上架时间 | 2020-10-16 |
评分 | 5.00/5 共1次评分 |
开发者 | Jerome Mutterer |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/mutterer/open-in-imagej-js-extension |
帮助页面URL | https://github.com/mutterer/open-in-imagej-js-extension |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Open in ImageJ.JS", "author": "Jerome Mutterer and Wei Ouyang", "description": "Adds buttons to GitHub and Zenodo *.ijm and *.tif items and a context menu command to open images in ImageJ.JS", "permissions": [ "contextMenus" ], "homepage_url": "https:\/\/github.com\/mutterer\/run-gist-in-imagej-js-extension", "version": "1.0.4", "content_scripts": [ { "matches": [ "https:\/\/gist.github.com\/*", "https:\/\/github.com\/*", "https:\/\/zenodo.org\/*", "https:\/\/www.proteinatlas.org\/*" ], "js": [ "main.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "contextMenu.js" ] }, "icons": { "16": "icons\/run-gist-in-imagej-js-16x16.png", "48": "icons\/run-gist-in-imagej-js-48x48.png", "128": "icons\/run-gist-in-imagej-js-128x128.png", "500": "icons\/run-gist-in-imagej-js-500x500.png" } } |