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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://browsernative.com, και η κύρια λειτουργία του είναι "Unhappy with DuckDuckGo results? Quickly search the same query on Google. Use the toolbar button or the keyboard command shift + g".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης DuckDuckGo to Google
Λήψη αρχείων επέκτασης 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\/"
} | |