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”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載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 Open in ImageJ.JS
ID gneikkcbnfohdpmjidceolbhpigpokij
官方網址 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"
    }
}