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 |
Eメール | [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" } } |