Mojo HelpDesk Extension by Collective Bias
Unofficial extension for Mojo HelpDesk that adds additional functionallity for tickets received in Gmail.
¿Qué es Mojo HelpDesk Extension by Collective Bias?
Mojo HelpDesk Extension by Collective Bias es una extensión de Chrome desarrollada por http://collectivebias.com, y su función principal es "Unofficial extension for Mojo HelpDesk that adds additional functionallity for tickets received in Gmail.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Mojo HelpDesk Extension by Collective Bias
Descarga archivos de extensión Mojo HelpDesk Extension by Collective Bias en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Unofficial extension for Mojo HelpDesk that adds additional functionality for tickets received in Gmail. Not affiliated with or supported by Mojo HelpDesk. Need support or have feature suggestions? https://github.com/collectivebias/mojohelpdesk-chrome-extension Version 1.1 - Removed unneeded tabs permission - CW Version 1.2 - Sorted select boxes and added additional debug info - CW Version 1.3 - Removed Sorting from status dropdown - CW Version 1.4 - Added additional custom fields and fixed some other sorting issues. - CW Version 1.5 - Changed url to match new mojo Version 2.0 - Added options for mojohelpdesk web app and custom fields Version 2.1 - Bug fix for reload Version 2.2 - Bug fix for when you navigated between mojo ticket list and tickets not firing the extension Version 2.3 - Bug fix for assigned to showing wrong value Version 3.1 - 1,2 skip a few - Removed Popup and Added Ticket Info, Messages, and Private Message Options. Misc Bug Fixes Version 3.2 - Removed message filter that was making some messages not show, also moved a hard coded filter to come from the settings. Version 4.0 - Completely rebuilt using ReactJS, added periodic check for new messages. Version 4.1 - Misc Image fixes Version 4.2 - Temp removal of periodic messages loading due to they won't stop when element is gone. Version 4.3 - Fixed periodic messages loading. Version 4.4 - Added ticket priority as an update option Version 4.5 - Fixed issue where ticket wasn't being loaded when next email buttons were used. Version 4.6 - Fixed issue where we customer fields we giving issues updating in the mojo helpdesk ui Version 5.0 - Simplified Ajax calls, moved description to it's own section, condensed the UI, added Public Messages to Send Message option, other enhancements. Version 5.1 - Added additional custom fields options features, fixed issue with the API timer being set to a lower number than it should have. Version 5.2 - Additional error handling for API calls Version 5.3 - CSS fix where messages were not scrolling and added message for no attachments. Version 5.4 - Added defined SLAs to options to populate DueOn and ScheduledOn, Removed Title selector for options opting to use email address instead. Version 5.5 - fix to the DueDate and ScheduledOn being flipped. Version 5.6 - fix date change in Mojo API Version 5.7 and 5.8 and 5.9 - added some code to move towards Firefox Extension Version 6.0 - Changed from Content Scripts to Background Scripts so the Mail Domain and Mojo Domain could be dynamic. Version 6.1 - Fixed issue with scheduled_on and due_on being always calculated when force slas was enabled. Version 6.2 - Cleaned up code Version 6.4 - Fixed issue where portlet drops behind existing divs
Información Básica de la Extensión
Nombre | |
ID | himdmnjdmgjpoanmgmjiihempplfianj |
URL Oficial | https://chrome.google.com/webstore/detail/himdmnjdmgjpoanmgmjiihempplfianj |
Descripción | Unofficial extension for Mojo HelpDesk that adds additional functionallity for tickets received in Gmail. |
Tamaño del Archivo | 4.18 MB |
Cantidad de Instalaciones | 48 |
Versión Actual | 6.4 |
Última Actualización | 2017-12-06 |
Fecha de Publicación | 2017-12-06 |
Calificación | 5.00/5 Total de 4 Calificaciones |
Desarrollador | http://collectivebias.com |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "background": { "scripts": [ "background_init.js" ], "persistent": false }, "content_scripts": [ { "js": [ "lib\/Shared.js", "lib\/CB_Mojo_Extension.js", "init.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_end" } ], "description": "Unofficial extension for Mojo HelpDesk that adds additional functionallity for tickets received in Gmail.", "homepage_url": "http:\/\/collectivebias.com", "icons": { "128": "images\/icons\/icon128.png", "16": "images\/icons\/icon16.png", "48": "images\/icons\/icon48.png" }, "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAoQ+8jeh7feCjD3uEFQWlf2M+snwxheSUAZdZJyrFC4QY4LSR1e2eEzvJhLRXy\/5J68AietNA7rk9q27Ft7A0Behm\/WI5\/QCTe43G8mK8UpE1c+TNcAFBHrAiCrbBCbujHuDP6MSjPh9mfqs5iXs3h+pi960HDvuK8EunvoS541wdfPY8UcX+6I278fUPkJoY5pKMO8gsQ20CUDmdxm55cADQm3J\/t4nIgNjtD6rxmWPalAbzEYCwvq7KcUYmz6Ubzx8WEu4GeF\/QI75sDzgQuJDIkZS\/Uh8koz1oDn1NGyd0AUBXmisOEIjWOPnxt28QEHbOdgoVR6d7kTiJDBy1ewIDAQAB", "manifest_version": 2, "name": "Mojo HelpDesk Extension by Collective Bias", "options_ui": { "page": "options\/options.html", "open_in_tab": true }, "permissions": [ "storage", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "6.4", "web_accessible_resources": [ "components\/Portlet\/stoplight.png", "images\/icons\/*", "options\/images\/*" ] } |