Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Twilio Flex Click To Dial",
"manifest_version": 3,
"version": "0.10",
"description": "Twilio Flex Click To Dial",
"permissions": [
"tabs",
"activeTab",
"storage"
],
"background": {
"service_worker": "background.js"
},
"icons": {
"128": "callGray.png"
},
"action": [],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"exclude_matches": [
"*:\/\/flex.twilio.com\/*",
"*:\/\/localhost\/*"
],
"run_at": "document_idle",
"js": [
"contentScript.js"
],
"all_frames": true
},
{
"matches": [
"*:\/\/flex.twilio.com\/*",
"*:\/\/localhost\/*"
],
"run_at": "document_idle",
"js": [
"flexScript.js"
]
}
]
}