Zendesk caller phone number catcher
This plugin helps to process incoming calls at zendesk.com
What is Zendesk caller phone number catcher?
Zendesk caller phone number catcher is a Chrome extension developed by Unknown, and its main feature is "This plugin helps to process incoming calls at zendesk.com".
Extension Screenshots
Download Zendesk caller phone number catcher Extension CRX File
Download Zendesk caller phone number catcher extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This plugin helps to process incoming calls at zendesk.com Extension Basic Information
| Name | |
| ID | mjbpffoeebgojaeholckblnefepjpaka |
| Official URL | https://chromewebstore.google.com/detail/zendesk-caller-phone-numb/mjbpffoeebgojaeholckblnefepjpaka |
| Description | This plugin helps to process incoming calls at zendesk.com |
| File Size | 92.66 KB |
| Installation Count | 82 |
| Current Version | 0.1.4.1 |
| Last Updated | 2019-11-18 |
| Publish Date | 2019-11-18 |
| Rating | 5.00/5 Total 2 Ratings |
| Developer | Unknown |
| Payment Type | free |
| Supported Languages | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Zendesk caller phone number catcher",
"version": "0.1.4.1",
"description": "",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"options_ui": {
"page": "html\/options.html",
"open_in_tab": false
},
"content_scripts": [
{
"matches": [
"https:\/\/*.zendesk.com\/*"
],
"js": [
"contentScript.js"
]
}
],
"permissions": [
"contextMenus",
"tabs",
"activeTab",
"storage"
],
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"64": "icons\/icon64.png",
"128": "icons\/icon128.png"
},
"web_accessible_resources": [
"images\/*.png"
],
"manifest_version": 2
} | |