Datlas

Click-to-define in browser programming definitions!

Qu'est-ce que Datlas ?

Datlas est une extension Chrome développée par tgolias94, et sa fonction principale est "Click-to-define in browser programming definitions!".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Datlas

Téléchargez les fichiers d'extension Datlas au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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]                    

Informations de Base sur l'Extension

Nom Datlas Datlas
ID oppdkancpjipjfppicbeebcjbjbobofc
URL Officiel https://chrome.google.com/webstore/detail/datlas/oppdkancpjipjfppicbeebcjbjbobofc
Description Click-to-define in browser programming definitions!
Taille du Fichier 528 KB
Nombre d'Installations 38
Version Actuelle 1.0
Dernière Mise à Jour 2015-03-30
Date de Publication 2015-03-30
Évaluation 5.00/5 Total 2 Évaluations
Développeur tgolias94
Type de Paiement free
Langues Prises en Charge 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"
    }
}