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”。
扩展截图
下载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. 扩展基本信息
| 名称 | |
| 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"
]
} | |