CodeBuddy

An awesome code buddy to help you find stuff fast!

CodeBuddyとは何ですか?

CodeBuddyはUnknownによって開発されたChromeの拡張機能で、その主な機能は「An awesome code buddy to help you find stuff fast!」です。

拡張機能のスクリーンショット

CodeBuddy拡張機能のCRXファイルをダウンロード

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"
        ]
    }
}