Freshdesk Developer Extension

Test and debug Freshdesk SDK apps

Freshdesk Developer Extensionとは何ですか?

Freshdesk Developer Extensionはhttp://freshdesk.comによって開発されたChromeの拡張機能で、その主な機能は「Test and debug Freshdesk SDK apps」です。

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

screenshot
screenshot

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

Freshdesk Developer Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        The Freshdesk {developers} extension allows you to use the SDK's local testing abilities to test your app with your Freshdesk account with no hassles.                    

拡張機能の基本情報

名前 Freshdesk Developer Extension Freshdesk Developer Extension
ID dhiijfebjgnbjcncjcdhmgehmhhojffe
公式URL https://chrome.google.com/webstore/detail/freshdesk-developer-exten/dhiijfebjgnbjcncjcdhmgehmhhojffe
説明 Test and debug Freshdesk SDK apps
ファイルサイズ 887 KB
インストール数 544
現在のバージョン 3.0.0
最終更新日 2017-08-01
公開日 2017-08-01
評価 4.00/5 合計 4 レビュー
開発者 http://freshdesk.com
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Freshdesk Developer Extension",
    "short_name": "FreshdeskSDK",
    "description": "Test and debug Freshdesk SDK apps",
    "version": "3.0.0",
    "icons": {
        "128": "img\/128.png",
        "96": "img\/96.png",
        "48": "img\/48.png",
        "32": "img\/32.png"
    },
    "browser_action": {
        "default_icon": "img\/32.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "js\/frameworks\/prototype-1.6.js",
            "js\/extension\/background.js",
            "js\/extension\/websocket.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/frameworks\/jquery-1.8.3.js",
                "js\/frameworks\/prototype-1.6.js",
                "js\/extension\/contentscript.js",
                "js\/freshdesk\/freshapp.js"
            ],
            "run_at": "document_start"
        }
    ],
    "homepage_url": "http:\/\/developer.freshdesk.com\/",
    "minimum_chrome_version": "28",
    "permissions": [
        "http:\/\/localhost:10001\/",
        "storage",
        "tabs",
        "notifications"
    ]
}