DuckDuckGo to Google
Unhappy with DuckDuckGo results? Quickly search the same query on Google. Use the toolbar button or the keyboard command shift + g
什么是DuckDuckGo to Google?
DuckDuckGo to Google是由https://browsernative.com开发的Chrome扩展程序,该扩展的主要功能是“Unhappy with DuckDuckGo results? Quickly search the same query on Google. Use the toolbar button or the keyboard command shift + g”。
扩展截图
下载DuckDuckGo to Google扩展crx文件
下载DuckDuckGo to Google扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Use extension's toolbar button or the keyboard shortcut (Shift + g) while searching on DuckDuckGo. It would load the Google search result page for the same query.
Visit homepage for more: https://browsernative.com/duckduckgo-to-google-search/
Extension by BrowserNative. Not created by or affiliated with DuckDuckGo or Google. 扩展基本信息
| 名称 | |
| ID | ifbidhibhedohacondenjgoahnoidblm |
| 官方URL | https://chromewebstore.google.com/detail/duckduckgo-to-google/ifbidhibhedohacondenjgoahnoidblm |
| 简介 | Unhappy with DuckDuckGo results? Quickly search the same query on Google. Use the toolbar button or the keyboard command shift + g |
| 文件大小 | 21.38 KB |
| 安装次数 | 155 |
| 当前版本 | 1.0.1 |
| 更新时间 | 2022-05-04 |
| 上架时间 | 2022-05-04 |
| 开发者 | https://browsernative.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://browsernative.com/duckduckgo-to-google-search/ |
| 帮助页面URL | https://browsernative.com/duckduckgo-to-google-search/ |
| 隐私政策页面URL | https://browsernative.com/extensions-privacy-policy |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "DuckDuckGo to Google",
"description": "Unhappy with DuckDuckGo results? Quickly search the same query on Google. Use the toolbar button or the keyboard command shift + g",
"version": "1.0.1",
"manifest_version": 3,
"content_scripts": [
{
"matches": [
"*:\/\/duckduckgo.com\/*",
"*:\/\/www.duckduckgo.com\/*"
],
"js": [
"contentScript.js"
]
}
],
"icons": {
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
},
"action": {
"default_icon": {
"16": "icons\/icon-16.png",
"24": "icons\/icon-24.png",
"32": "icons\/icon-32.png"
},
"default_title": "DDG to Google"
},
"background": {
"service_worker": "sw.js"
},
"permissions": [
"scripting",
"declarativeContent"
],
"host_permissions": [
"*:\/\/duckduckgo.com\/*",
"*:\/\/www.duckduckgo.com\/*"
],
"homepage_url": "https:\/\/browsernative.com\/duckduckgo-to-google-search\/"
} | |