Genotify

This extension allows for in-text referencing of gene symbols.

Genotifyคืออะไร?

Genotify เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mo Alawi และคุณลักษณะหลักของมันคือ "This extension allows for in-text referencing of gene symbols."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Genotify

ดาวน์โหลดไฟล์ส่วนขยาย Genotify ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Googling a gene every few minutes just to get a basic summary gets old, doesn't it?

This extension alleviates that annoyance by allowing for convenient, in-text referencing of gene symbols. All you have to do is highlight a human gene symbol. The extension will then check Gencode 19 human gene annotations to determine the UniProt ID for the gene. Basic information such as the full gene name and protein function are pulled from the UniProtKB database and displayed in a small blurb above the highlighted gene symbol within about a second.

Source: https://github.com/melalawi/Genotify

E-mail Jared ([email protected]) or Mo ([email protected]) with comments, concerns, questions, or suggestions.

Thanks to UniProt and Gencode for existing:

The UniProt Consortium UniProt: a hub for protein information Nucleic Acids Res. 43: D204-D212 (2015).

GENCODE: the reference human genome annotation for The ENCODE Project. Harrow J et al. Genome research 2012;22;9;1760-74 PUBMED: 22955987; PMC: 3431492; DOI: 10.1101/gr.135350.111                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Genotify Genotify
ID mjlnpmhdfpdgcapoggcinelpooediipn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/genotify/mjlnpmhdfpdgcapoggcinelpooediipn
คำอธิบาย This extension allows for in-text referencing of gene symbols.
ขนาดไฟล์ 564 KB
จำนวนการติดตั้ง 323
เวอร์ชันปัจจุบัน 1.1.0
อัปเดตครั้งล่าสุด 2022-03-01
วันที่เผยแพร่ 2020-03-24
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Mo Alawi
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://itsmo.me/
URL หน้าช่วยเหลือ https://github.com/melalawi/Genotify
URL หน้านโยบายความเป็นส่วนตัว https://ostrichtools.com/p/GlobalTwitchEmotes
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Genotify",
    "short_name": "Genotify",
    "description": "This extension allows for in-text referencing of gene symbols.",
    "version": "1.1.0",
    "icons": {
        "16": "logo\/icon16.png",
        "48": "logo\/icon48.png",
        "128": "logo\/icon128.png"
    },
    "background": {
        "scripts": [
            ".\/lib\/deferred.js",
            ".\/lib\/background.js",
            ".\/lib\/chromeBackground.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [
        "data\/images\/loading.gif"
    ],
    "permissions": [
        "storage",
        "activeTab",
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "browser_action": {
        "default_icon": "data\/images\/Icon.png",
        "default_popup": "data\/html\/options.html",
        "default_title": "Genotify Options"
    }
}