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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Open in ImageJ.JS एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
    }
}