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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jerome Mutterer และคุณลักษณะหลักของมันคือ "Adds buttons to GitHub and Zenodo *.ijm and *.tif items and a context menu command to open images in ImageJ.JS"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Open in ImageJ.JS
ดาวน์โหลดไฟล์ส่วนขยาย 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" } } |