Mojo HelpDesk Extension by Collective Bias

Unofficial extension for Mojo HelpDesk that adds additional functionallity for tickets received in Gmail.

什么是Mojo HelpDesk Extension by Collective Bias?

Mojo HelpDesk Extension by Collective Bias是由http://collectivebias.com开发的Chrome扩展程序,该扩展的主要功能是“Unofficial extension for Mojo HelpDesk that adds additional functionallity for tickets received in Gmail.”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载Mojo HelpDesk Extension by Collective Bias扩展crx文件

下载Mojo HelpDesk Extension by Collective Bias扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Mojo HelpDesk Extension by Collective Bias Mojo HelpDesk Extension by Collective Bias
ID himdmnjdmgjpoanmgmjiihempplfianj
官方URL https://chrome.google.com/webstore/detail/himdmnjdmgjpoanmgmjiihempplfianj
简介 Unofficial extension for Mojo HelpDesk that adds additional functionallity for tickets received in Gmail.
文件大小 4.18 MB
安装次数 48
当前版本 6.4
更新时间 2017-12-06
上架时间 2017-12-06
评分 5.00/5 共4次评分
开发者 http://collectivebias.com
付费类型 free
支持的语言 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\/*"
    ]
}