Datlas

Click-to-define in browser programming definitions!

什麼是Datlas?

Datlas是由tgolias94開發的Chrome擴展程式,該擴展的主要功能是“Click-to-define in browser programming definitions!”。

擴展截圖

screenshot

下載Datlas擴展crx文件

下載Datlas擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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]                    

擴展基本資訊

名稱 Datlas Datlas
ID oppdkancpjipjfppicbeebcjbjbobofc
官方網址 https://chrome.google.com/webstore/detail/datlas/oppdkancpjipjfppicbeebcjbjbobofc
簡介 Click-to-define in browser programming definitions!
檔案大小 528 KB
安裝次數 38
目前版本 1.0
更新時間 2015-03-30
上架時間 2015-03-30
評分 5.00/5 共 2 次評分
開發者 tgolias94
付費類型 free
支援的語言 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"
    }
}