Datlas

Click-to-define in browser programming definitions!

Cos'è Datlas?

Datlas è un'estensione di Chrome sviluppata da tgolias94, e la sua funzione principale è "Click-to-define in browser programming definitions!".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Datlas

Scarica i file di estensione Datlas in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        With a quick double-tap, a window is summoned that displays Programming Language documentation.
Currently Python, C++, C# and Java documentation are supported.

This was created at SpartaHack 2015
http://spartahack.com/ 

Created By:
Tyler Golias
Zac Jacob
Thomas Royko
Kisora Thomas

Our SpartaHack team was indirectly sponsored by indirectly by Intense Gaming Logic LLC
http://www.intensegaminglogic.com/ 

Any questions or issues can be directed to [email protected]                    

Informazioni di Base sull'Estensione

Nome Datlas Datlas
ID oppdkancpjipjfppicbeebcjbjbobofc
URL Ufficiale https://chrome.google.com/webstore/detail/datlas/oppdkancpjipjfppicbeebcjbjbobofc
Descrizione Click-to-define in browser programming definitions!
Dimensione del File 528 KB
Conteggio Installazioni 38
Versione Corrente 1.0
Ultimo Aggiornamento 2015-03-30
Data di Pubblicazione 2015-03-30
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore tgolias94
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Datlas",
    "version": "1.0",
    "description": "Click-to-define in browser programming definitions!",
    "permissions": [
        "tabs",
        "",
        "storage"
    ],
    "icons": {
        "16": "icon_16.png",
        "128": "icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-1.11.2.min.js",
                "defineBox.js"
            ],
            "css": [
                "defineBox.css"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "browser_icon": "icon_16.png",
        "default_title": "Language Picker",
        "default_popup": "popup.html"
    }
}