BioTool

Provides basic sequence manipulation that may be useful to biologists.

Τι είναι το BioTool;

Το BioTool είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Sam Sudar, και η κύρια λειτουργία του είναι "Provides basic sequence manipulation that may be useful to biologists.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης BioTool

Λήψη αρχείων επέκτασης BioTool σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension makes it easier to deal with DNA and RNA sequences in the browser.

If you deal regularly with sequences, you may find that you have to clean up a GenBank sequence by removing the numbers or paste the reverse, complement, or reverse complement into an online tool. This extension eliminates the need to first go to another site, paste, submit, copy, and then go to your site of interest. You can instead use this extension and eliminate the extra step.

If you're interested, you can find the code at the link below. Please also use this link for bug reports, feature requests, and feedback.

https://github.com/srsudar/biotool

Note that although Chrome warns you the extension can collect all site data, it doesn't do so, and doesn't even collect analytics information. Feel free to take a look at the code.

New in 1.0.1:
* Remove annoying and irrelevant css.

New in 1.0.0:
* Works in more places (including gmail)
* Native Undo/Redo support in most fields
* Friendly toasts instead of a string if invalid base

Known Issues:
* Undo/Redo not working in gmail                    

Βασικές Πληροφορίες Επέκτασης

Όνομα BioTool BioTool
ID aenbjmfdhgnlpnpiiinajokpgchogmee
Επίσημο URL https://chrome.google.com/webstore/detail/biotool/aenbjmfdhgnlpnpiiinajokpgchogmee
Περιγραφή Provides basic sequence manipulation that may be useful to biologists.
Μέγεθος Αρχείου 65.85 KB
Αριθμός Εγκαταστάσεων 107
Τρέχουσα Έκδοση 1.0.1
Τελευταία Ενημέρωση 2015-05-29
Ημερομηνία Δημοσίευσης 2015-05-29
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Sam Sudar
Τύπος Πληρωμής free
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/srsudar/biotool
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "short_name": "BioTool",
    "version": "1.0.1",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "permissions": [
        "contextMenus",
        "clipboardRead"
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "persistent": false,
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "bower_components\/toastr\/toastr.css"
            ],
            "js": [
                "scripts\/contentscript.js",
                "bower_components\/jquery\/dist\/jquery.min.js",
                "bower_components\/toastr\/toastr.min.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}