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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |