Freshdesk Developer Extension
Test and debug Freshdesk SDK apps
Apa itu Freshdesk Developer Extension?
Freshdesk Developer Extension adalah ekstensi Chrome yang dikembangkan oleh http://freshdesk.com, dan fitur utamanya adalah "Test and debug Freshdesk SDK apps".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Freshdesk Developer Extension
Unduh file ekstensi Freshdesk Developer Extension dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | |
ID | dhiijfebjgnbjcncjcdhmgehmhhojffe |
URL Resmi | https://chrome.google.com/webstore/detail/freshdesk-developer-exten/dhiijfebjgnbjcncjcdhmgehmhhojffe |
Deskripsi | Test and debug Freshdesk SDK apps |
Ukuran File | 887 KB |
Jumlah Instalasi | 544 |
Versi Saat Ini | 3.0.0 |
Terakhir Diperbarui | 2017-08-01 |
Tanggal Publikasi | 2017-08-01 |
Penilaian | 4.00/5 Total 4 Penilaian |
Pengembang | http://freshdesk.com |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } |