Switchvox Dial
Call phone numbers on a webpage using Switchvox.
Switchvox Dial क्या है?
Switchvox Dial Switchvox द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Call phone numbers on a webpage using Switchvox."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Switchvox Dial एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
A Switchvox Business Phone System is required. The extension lets you dial any phone number with three simple steps: select the phone number, right-click, and choose dial. And you can redial, even after you leave the webpage.
एक्सटेंशन की मूल जानकारी
नाम | Switchvox Dial |
ID | maccjkeijombhmhohimpldgplfdgfiig |
आधिकारिक URL | https://chromewebstore.google.com/detail/switchvox-dial/maccjkeijombhmhohimpldgplfdgfiig |
विवरण | Call phone numbers on a webpage using Switchvox. |
फ़ाइल का आकार | 476 KB |
स्थापना संख्या | 634 |
वर्तमान संस्करण | 3.0.3 |
अंतिम अपडेट | 2022-07-20 |
प्रकाशन तिथि | 2022-07-19 |
रेटिंग | 1.00/5 कुल 1 रेटिंग्स |
डेवलपर | Switchvox |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://www.sangoma.com/business-phone-systems/features/click-to-dial/ |
सहायता पृष्ठ URL | https://help.sangoma.com/community/s/article/How-do-I-use-Switchvox-Dial |
गोपनीयता नीति पृष्ठ URL | https://www.sangoma.com/wp-content/uploads/Privacy-Policy.pdf |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Switchvox Dial", "version": "3.0.3", "manifest_version": 3, "minimum_chrome_version": "88", "description": "Call phone numbers on a webpage using Switchvox.", "homepage_url": "http:\/\/www1.digium.com\/en\/products\/switchvox\/features\/switchvox-apps", "options_ui": { "page": "static\/html\/options.html", "browser_style": true }, "icons": { "16": "static\/images\/switchboard_extension_icon_16.png", "32": "static\/images\/switchboard_extension_icon_32.png", "48": "static\/images\/switchboard_extension_icon_48.png", "128": "static\/images\/switchboard_extension_icon_128.png" }, "content_scripts": [ { "matches": [ "file:\/\/*\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "dist\/content.js" ], "css": [ "static\/content.css" ] } ], "permissions": [ "storage", "tabs", "contextMenus", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "service_worker": "dist\/background.js" }, "action": { "default_icon": "static\/images\/switchboard_extension_icon_32.png", "default_popup": "static\/html\/popup.html", "browser_style": false }, "web_accessible_resources": [ { "resources": [ "static\/*" ], "use_dynamic_url": true } ] } |