Yodel.io Business Phone System
Click to call via yodel.io
Qu'est-ce que Yodel.io Business Phone System ?
Yodel.io Business Phone System est une extension Chrome développée par https://yodel.io, et sa fonction principale est "Click to call via yodel.io".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Yodel.io Business Phone System
Téléchargez les fichiers d'extension Yodel.io Business Phone System au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Use the Yodel.io Chrome extension to click any phone number on a website to call out via Yodel.io. Information about permissions - We need to read and change data on all websites to find phone numbers and replace them with links - The extension runs entirely within the browser and does not send data to any server - The source code can be seen and reviewed here: https://github.com/YodelTalk/yodel-extension
Informations de Base sur l'Extension
Nom | Yodel.io Business Phone System |
ID | nmhjelifgdhoklhnbpehfigiikmiihjc |
URL Officiel | https://chromewebstore.google.com/detail/yodelio-business-phone-sy/nmhjelifgdhoklhnbpehfigiikmiihjc |
Description | Click to call via yodel.io |
Taille du Fichier | 112 KB |
Nombre d'Installations | 277 |
Version Actuelle | 0.9.0 |
Dernière Mise à Jour | 2019-03-14 |
Date de Publication | 2019-03-14 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | https://yodel.io |
Type de Paiement | free |
Site Web de l'Extension | https://www.yodel.io |
URL de la Page d'Aide | https://help.yodel.io/support/solutions/articles/36000070682-google-chrome-extension |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Yodel.io Business Phone System", "short_name": "Yodel", "version": "0.9.0", "description": "Click to call via yodel.io", "author": "YodelTalk", "homepage_url": "https:\/\/www.yodel.io", "manifest_version": 2, "icons": { "32": "icons\/yodel-32.png", "48": "icons\/yodel-48.png", "96": "icons\/yodel-96.png", "128": "icons\/yodel-128.png" }, "browser_action": { "default_icon": { "19": "icons\/toolbar.png", "38": "icons\/[email protected]" }, "default_popup": "options.html" }, "options_ui": { "page": "options.html", "open_in_tab": false }, "permissions": [ "storage", "tabs", "contextMenus" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_script.js" ], "run_at": "document_end", "all_frames": true } ] } |