Voice Search in new Tab
On click, launches voice input, and opens your search query in a new tab.
什么是Voice Search in new Tab?
Voice Search in new Tab是由starkoracia开发的Chrome扩展程序,该扩展的主要功能是“On click, launches voice input, and opens your search query in a new tab.”。
扩展截图
下载Voice Search in new Tab扩展crx文件
下载Voice Search in new Tab扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
По клику, открывает окно, для голосового ввода запроса на поиск!
扩展基本信息
名称 | Voice Search in new Tab |
ID | hlmiplcbcgplnmeiaggfdgimpjcofpco |
官方URL | https://chromewebstore.google.com/detail/voice-search-in-new-tab/hlmiplcbcgplnmeiaggfdgimpjcofpco |
简介 | On click, launches voice input, and opens your search query in a new tab. |
文件大小 | 99.16 KB |
安装次数 | 172 |
当前版本 | 1.0 |
更新时间 | 2021-03-15 |
上架时间 | 2021-03-14 |
评分 | 5.00/5 共5次评分 |
开发者 | starkoracia |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Voice Search in new Tab", "description": "On click, launches voice input, and opens your search query in a new tab.", "version": "1.0", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [], "content_scripts": [ { "matches": [ "https:\/\/search.easyvoice.xyz\/*" ], "js": [ "jquery-3.5.1.js", "contentScript.js" ], "run_at": "document_end" } ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/microphone16.png", "32": "\/images\/microphone32.png", "128": "\/images\/microphone128.png" } }, "icons": { "16": "\/images\/microphone16.png", "32": "\/images\/microphone32.png", "128": "\/images\/microphone128.png" } } |