Google Voice BYOP
Helper extension to send Turbo BYOP messages via Google Voice.
Google Voice BYOP क्या है?
Google Voice BYOP BEI.RE द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Helper extension to send Turbo BYOP messages via Google Voice."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Google Voice BYOP एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This is a helper extension that enables users of the TurboBYOP extension to use Google Voice as the messaging application for sending their text messages.
एक्सटेंशन की मूल जानकारी
नाम | Google Voice BYOP |
ID | khfinpojjggmejifelkmeamiljcehmpm |
आधिकारिक URL | https://chromewebstore.google.com/detail/google-voice-byop/khfinpojjggmejifelkmeamiljcehmpm |
विवरण | Helper extension to send Turbo BYOP messages via Google Voice. |
फ़ाइल का आकार | 56.1 KB |
स्थापना संख्या | 451 |
वर्तमान संस्करण | 0.3.0 |
अंतिम अपडेट | 2023-06-07 |
प्रकाशन तिथि | 2022-01-06 |
डेवलपर | BEI.RE |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
गोपनीयता नीति पृष्ठ URL | https://www.bei.re/privacy |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Google Voice BYOP", "short_name": "GV-BYOP", "version": "0.3.0", "description": "Helper extension to send Turbo BYOP messages via Google Voice. ", "author": "BEI.RE Corp", "homepage_url": "https:\/\/www.bei.re", "background": { "service_worker": "background.js" }, "action": { "default_title": "GV-BYOP", "default_icon": "icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/hangouts.google.com\/webchat\/*" ], "js": [ "contentScripts\/hangoutsListViewManager.js", "contentScripts\/hangoutsThreadViewManager.js" ], "all_frames": true }, { "matches": [ "https:\/\/voice.google.com\/*" ], "js": [ "contentScripts\/googleVoiceManager.js" ], "all_frames": true }, { "matches": [ "https:\/\/hangouts.google.com\/webchat\/*", "https:\/\/voice.google.com\/*" ], "js": [ "contentScripts\/tools.js", "contentScripts\/main.js" ], "all_frames": true } ], "icons": { "48": "icon48.png", "128": "icon.png" }, "permissions": [ "clipboardWrite", "clipboardRead", "storage" ] } |