Freshdesk Developer Extension
Test and debug Freshdesk SDK apps
Vad är Freshdesk Developer Extension?
Freshdesk Developer Extension är en Chrome-tillägg utvecklad av http://freshdesk.com, och dess huvudfunktion är "Test and debug Freshdesk SDK apps".
Tilläggsskärmbilder
Ladda ner Freshdesk Developer Extension-förlängningens CRX-fil
Ladda ner Freshdesk Developer Extension-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | dhiijfebjgnbjcncjcdhmgehmhhojffe |
| Officiell webbadress | https://chrome.google.com/webstore/detail/freshdesk-developer-exten/dhiijfebjgnbjcncjcdhmgehmhhojffe |
| Beskrivning | Test and debug Freshdesk SDK apps |
| Filstorlek | 887 KB |
| Antal Installationer | 544 |
| Aktuell Version | 3.0.0 |
| Senast Uppdaterad | 2017-08-01 |
| Publiceringsdatum | 2017-08-01 |
| Betyg | 4.00/5 Totalt 4 Betyg |
| Utvecklare | http://freshdesk.com |
| Betalningssätt | free |
| Stödda Språk | 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"
]
} | |