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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |