Datlas

Click-to-define in browser programming definitions!

Datlasคืออะไร?

Datlas เป็นส่วนขยายของ Chrome ที่พัฒนาโดย tgolias94 และคุณลักษณะหลักของมันคือ "Click-to-define in browser programming definitions!"

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
    }
}