CodeBuddy

An awesome code buddy to help you find stuff fast!

CodeBuddyคืออะไร?

CodeBuddy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "An awesome code buddy to help you find stuff fast!"

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

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

ดาวน์โหลดไฟล์ส่วนขยาย CodeBuddy ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Code-E is an extension that utilizes natural language recognition and chrome's web speech API to provide voice control to chrome!

some basic commands:

Code-E, (Open) (I need a) (give me a) new tab - opens new tab
Code-E, (Open) (I need a) (give me a) new *google/spotify/facebook/MDN tab
Code-E, Close current tab - closes current tab
Code-E, (tell me a) (how about a) joke - scrapes joke API for random joke.
Code-E, Hows the weather? - scrapes weather API for current weather.

Code-E, (find) (whats) *term - where term is some term in Javascript - currently only JS terms/functions are recognized for V1.0.

Code-E, go away - closes cody.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ CodeBuddy CodeBuddy
ID jegkmedeellhdfabmlgiakkebbhijbcp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/codebuddy/jegkmedeellhdfabmlgiakkebbhijbcp
คำอธิบาย An awesome code buddy to help you find stuff fast!
ขนาดไฟล์ 325 KB
จำนวนการติดตั้ง 21
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2015-12-02
วันที่เผยแพร่ 2015-12-01
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CodeBuddy",
    "version": "1.0",
    "description": "An awesome code buddy to help you find stuff fast!",
    "icons": {
        "48": "robit_48.png",
        "128": "robit_128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "robit_sleep_19.png",
            "38": "robit_48.png"
        },
        "default_title": "CodeBuddy"
    },
    "permissions": [
        "tabs",
        "audio",
        "tts",
        "ttsEngine",
        "http:\/\/devdocs.io\/",
        "https:\/\/ajax.googleapis.com\/",
        "http:\/\/*\/"
    ],
    "tts_engine": {
        "voices": [
            {
                "voice_name": "Google US English",
                "lang": "en-US",
                "gender": "female",
                "event_types": [
                    "start",
                    "marker",
                    "end"
                ]
            }
        ]
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}