Datlas

Click-to-define in browser programming definitions!

Wat is Datlas?

Datlas is een Chrome-extensie ontwikkeld door tgolias94, en de belangrijkste functie is "Click-to-define in browser programming definitions!".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Datlas

Download Datlas-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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]                    

Basisinformatie over de Extensie

Naam Datlas Datlas
ID oppdkancpjipjfppicbeebcjbjbobofc
Officiële URL https://chrome.google.com/webstore/detail/datlas/oppdkancpjipjfppicbeebcjbjbobofc
Beschrijving Click-to-define in browser programming definitions!
Bestandsgrootte 528 KB
Aantal Installaties 38
Huidige Versie 1.0
Laatst Bijgewerkt 2015-03-30
Publicatiedatum 2015-03-30
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar tgolias94
Betalingswijze free
Ondersteunde Talen 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"
    }
}