Serenade for Chrome
Navigate the web with voice.
Serenade for Chrome क्या है?
Serenade for Chrome https://serenade.ai द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Navigate the web with voice."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Serenade for Chrome एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
With Serenade, you can write code by speaking rather than typing. With the Serenade extension for Chrome, you can extend your productivity to the browser. Simply speak a command, and Serenade will navigate the web and write text for you, with no mouse or keyboard required. This extension requires the Serenade native app, which is freely available for Windows, macOS, and Linux. Learn more at https://serenade.ai. Manage your tabs with commands like: - "new tab" - "close tab" - "next | previous tab" - "first | second ... tab" - "duplicate tab" Navigate with commands like: - "forward" - "back" - "reload" - "scroll left | up | right | down" - "scroll to ..." - "go to ..." - "show links | inputs" - "click ..." Write text in editable areas on pages, with commands like: - "type ..." - "line one | two ..." - "delete ..." - "copy | cut ..." - "paste"
एक्सटेंशन की मूल जानकारी
नाम | Serenade for Chrome |
ID | bgfbijeikimjmdjldemlegooghdjinmj |
आधिकारिक URL | https://chromewebstore.google.com/detail/serenade-for-chrome/bgfbijeikimjmdjldemlegooghdjinmj |
विवरण | Navigate the web with voice. |
फ़ाइल का आकार | 95.49 KB |
स्थापना संख्या | 2,870 |
वर्तमान संस्करण | 1.4.3 |
अंतिम अपडेट | 2021-09-02 |
प्रकाशन तिथि | 2020-06-30 |
रेटिंग | 4.63/5 कुल 8 रेटिंग्स |
डेवलपर | https://serenade.ai |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://serenade.ai/ |
सहायता पृष्ठ URL | https://serenade.ai/docs/chrome/ |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Serenade for Chrome", "version": "1.4.3", "description": "Navigate the web with voice.", "icons": { "16": "img\/icon_default\/16x16.png", "48": "img\/icon_default\/48x48.png", "128": "img\/icon_default\/128x128.png" }, "browser_action": { "default_icon": { "16": "img\/icon_default\/16x16.png", "32": "img\/icon_default\/32x32.png", "48": "img\/icon_default\/48x48.png", "128": "img\/icon_default\/128x128.png" }, "default_title": "Serenade for Chrome", "default_popup": "popup.html" }, "background": { "scripts": [ "build\/extension.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "run_at": "document_start", "js": [ "build\/content.js", "build\/inject.js" ] } ], "web_accessible_resources": [ "build\/page.js" ], "permissions": [ "tabs", "*:\/\/*\/*" ] } |