Yodel.io Business Phone System
Click to call via yodel.io
Yodel.io Business Phone System क्या है?
Yodel.io Business Phone System https://yodel.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Click to call via yodel.io"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Yodel.io Business Phone System एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 } ] } |