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".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου 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 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"
    }
}