DuckDuckGo to Google
Unhappy with DuckDuckGo results? Quickly search the same query on Google. Use the toolbar button or the keyboard command shift + g
Was ist DuckDuckGo to Google?
DuckDuckGo to Google ist eine Chrome-Erweiterung, die von https://browsernative.com entwickelt wurde, und ihr Hauptmerkmal ist "Unhappy with DuckDuckGo results? Quickly search the same query on Google. Use the toolbar button or the keyboard command shift + g".
Erweiterungsscreenshots
DuckDuckGo to Google-Erweiterungs-CRX-Datei herunterladen
Laden Sie DuckDuckGo to Google-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | DuckDuckGo to Google |
ID | ifbidhibhedohacondenjgoahnoidblm |
Offizielle URL | https://chromewebstore.google.com/detail/duckduckgo-to-google/ifbidhibhedohacondenjgoahnoidblm |
Beschreibung | Unhappy with DuckDuckGo results? Quickly search the same query on Google. Use the toolbar button or the keyboard command shift + g |
Dateigröße | 21.38 KB |
Installationsanzahl | 155 |
Aktuelle Version | 1.0.1 |
Letztes Update | 2022-05-04 |
Veröffentlichungsdatum | 2022-05-04 |
Entwickler | https://browsernative.com |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://browsernative.com/duckduckgo-to-google-search/ |
Hilfeseite URL | https://browsernative.com/duckduckgo-to-google-search/ |
URL der Datenschutzrichtlinien-Seite | https://browsernative.com/extensions-privacy-policy |
Unterstützte Sprachen | 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\/" } |