Yodel.io Business Phone System
Click to call via yodel.io
Yodel.io Business Phone System란 무엇입니까?
Yodel.io Business Phone System은(는) https://yodel.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Click to call via yodel.io"입니다.
확장 프로그램 스크린샷
Yodel.io Business Phone System 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | Yodel.io Business Phone System |
ID | nmhjelifgdhoklhnbpehfigiikmiihjc |
공식 URL | https://chromewebstore.google.com/detail/yodelio-business-phone-sy/nmhjelifgdhoklhnbpehfigiikmiihjc |
설명 | Click to call via yodel.io |
파일 크기 | 112 KB |
설치 횟수 | 277 |
현재 버전 | 0.9.0 |
최근 업데이트 | 2019-03-14 |
출시 날짜 | 2019-03-14 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | https://yodel.io |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.yodel.io |
도움말 페이지 URL | https://help.yodel.io/support/solutions/articles/36000070682-google-chrome-extension |
지원되는 언어 | 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 } ] } |