Yodel.io Business Phone System
Click to call via yodel.io
O que é Yodel.io Business Phone System?
Yodel.io Business Phone System é uma extensão do Chrome desenvolvida por https://yodel.io, e sua principal característica é "Click to call via yodel.io".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Yodel.io Business Phone System
Baixe arquivos de extensão Yodel.io Business Phone System no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Yodel.io Business Phone System |
ID | nmhjelifgdhoklhnbpehfigiikmiihjc |
URL Oficial | https://chromewebstore.google.com/detail/yodelio-business-phone-sy/nmhjelifgdhoklhnbpehfigiikmiihjc |
Descrição | Click to call via yodel.io |
Tamanho do Arquivo | 112 KB |
Contagem de Instalações | 277 |
Versão Atual | 0.9.0 |
Última Atualização | 2019-03-14 |
Data de Publicação | 2019-03-14 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | https://yodel.io |
Tipo de Pagamento | free |
Site da Extensão | https://www.yodel.io |
URL da Página de Ajuda | https://help.yodel.io/support/solutions/articles/36000070682-google-chrome-extension |
Idiomas Suportados | 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 } ] } |