Simotel Click2dial chrome extension
Use context menu to call with Simotel
Vad är Simotel Click2dial chrome extension?
Simotel Click2dial chrome extension är en Chrome-tillägg utvecklad av Nasim Telecom, och dess huvudfunktion är "Use context menu to call with Simotel".
Tilläggsskärmbilder
Ladda ner Simotel Click2dial chrome extension-förlängningens CRX-fil
Ladda ner Simotel Click2dial chrome extension-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Simotel Click2Dial chrome extension provide a simple way to send phone numbers to Simotel client apps. How to use: Select the any phone number you wish to call in chrome tabs, open context menu by right click and finally click on Simotel icon, calls send to your Simotel apps. Notice: This app is usable for Simotel PBX.
Grundläggande Information om Tillägg
Namn | Simotel Click2dial chrome extension |
ID | bcmgcllckkknkmlkdlckejiedighncha |
Officiell webbadress | https://chromewebstore.google.com/detail/simotel-click2dial-chrome/bcmgcllckkknkmlkdlckejiedighncha |
Beskrivning | Use context menu to call with Simotel |
Filstorlek | 105 KB |
Antal Installationer | 284 |
Aktuell Version | 2.0 |
Senast Uppdaterad | 2023-03-14 |
Publiceringsdatum | 2020-08-14 |
Betyg | 5.00/5 Totalt 8 Betyg |
Utvecklare | Nasim Telecom |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://simotel.com/ |
Hjälpsida URL | https://simotel.com/contact/ |
Stödda Språk | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Simotel Click2dial chrome extension", "description": "Use context menu to call with Simotel", "version": "2.0", "manifest_version": 2, "options_page": "index.html", "permissions": [ "notifications", "contextMenus", "storage", "*:\/\/*\/*" ], "background": { "scripts": [ "js\/simotel.js", "js\/background.js", "js\/jquery.min.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "js\/simotel.js", "js\/jquery.min.js", "js\/content.js" ] } ], "browser_action": { "default_popup": "index.html" }, "icons": { "32": "images\/simotel32.png", "64": "images\/simotel64.png", "128": "images\/simotel128.png" } } |