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

O que é Open in ImageJ.JS?

Open in ImageJ.JS é uma extensão do Chrome desenvolvida por Jerome Mutterer, e sua principal característica é "Adds buttons to GitHub and Zenodo *.ijm and *.tif items and a context menu command to open images in ImageJ.JS".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Open in ImageJ.JS

Baixe arquivos de extensão Open in ImageJ.JS no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Open in ImageJ.JS Open in ImageJ.JS
ID gneikkcbnfohdpmjidceolbhpigpokij
URL Oficial https://chromewebstore.google.com/detail/open-in-imagejjs/gneikkcbnfohdpmjidceolbhpigpokij
Descrição Adds buttons to GitHub and Zenodo *.ijm and *.tif items and a context menu command to open images in ImageJ.JS
Tamanho do Arquivo 159 KB
Contagem de Instalações 368
Versão Atual 1.0.4
Última Atualização 2020-11-12
Data de Publicação 2020-10-16
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Jerome Mutterer
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/mutterer/open-in-imagej-js-extension
URL da Página de Ajuda https://github.com/mutterer/open-in-imagej-js-extension
Idiomas Suportados 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"
    }
}