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
Hvad er Open in ImageJ.JS?
Open in ImageJ.JS er en Chrome-udvidelse udviklet af Jerome Mutterer, og dens hovedfunktion er "Adds buttons to GitHub and Zenodo *.ijm and *.tif items and a context menu command to open images in ImageJ.JS".
Udvidelsesskærmbilleder
Download Open in ImageJ.JS-udvidelses-CRX-fil
Download Open in ImageJ.JS-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Open in ImageJ.JS |
ID | gneikkcbnfohdpmjidceolbhpigpokij |
Officiel URL | https://chromewebstore.google.com/detail/open-in-imagejjs/gneikkcbnfohdpmjidceolbhpigpokij |
Beskrivelse | Adds buttons to GitHub and Zenodo *.ijm and *.tif items and a context menu command to open images in ImageJ.JS |
Filstørrelse | 159 KB |
Antal Installationer | 368 |
Nuværende Version | 1.0.4 |
Senest Opdateret | 2020-11-12 |
Udgivelsesdato | 2020-10-16 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | Jerome Mutterer |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/mutterer/open-in-imagej-js-extension |
Hjælpeside-URL | https://github.com/mutterer/open-in-imagej-js-extension |
Understøttede Sprog | 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" } } |