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
¿Qué es Open in ImageJ.JS?
Open in ImageJ.JS es una extensión de Chrome desarrollada por Jerome Mutterer, y su función principal es "Adds buttons to GitHub and Zenodo *.ijm and *.tif items and a context menu command to open images in ImageJ.JS".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Open in ImageJ.JS
Descarga archivos de extensión Open in ImageJ.JS en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Open in ImageJ.JS |
ID | gneikkcbnfohdpmjidceolbhpigpokij |
URL Oficial | https://chromewebstore.google.com/detail/open-in-imagejjs/gneikkcbnfohdpmjidceolbhpigpokij |
Descripción | Adds buttons to GitHub and Zenodo *.ijm and *.tif items and a context menu command to open images in ImageJ.JS |
Tamaño del Archivo | 159 KB |
Cantidad de Instalaciones | 368 |
Versión Actual | 1.0.4 |
Última Actualización | 2020-11-12 |
Fecha de Publicación | 2020-10-16 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | Jerome Mutterer |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/mutterer/open-in-imagej-js-extension |
URL de la Página de Ayuda | https://github.com/mutterer/open-in-imagej-js-extension |
Idiomas Soportados | 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" } } |