Duck Duck Google

Sometimes Duck Duck Go isn't perfect, here is a bailout that adds a simple button to duck duck go to google your term.

Was ist Duck Duck Google?

Duck Duck Google ist eine Chrome-Erweiterung, die von http://clintonmedbery.dev entwickelt wurde, und ihr Hauptmerkmal ist "Sometimes Duck Duck Go isn't perfect, here is a bailout that adds a simple button to duck duck go to google your term.".

Erweiterungsscreenshots

screenshot

Duck Duck Google-Erweiterungs-CRX-Datei herunterladen

Laden Sie Duck Duck 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

                        Don't want to use google? Well maybe you want to use google occasionally when DuckDuckGo doesn't match that awful 4 page long error code your bad programming spits out? DuckDuckGoogle adds a simple button to DuckDuckGo to search in Google on the fly. Don't worry, we won't tell anyone.                    

Grundlegende Informationen zur Erweiterung

Name Duck Duck Google Duck Duck Google
ID fpnifenmokdnegahekoobkoinidabcoi
Offizielle URL https://chrome.google.com/webstore/detail/duck-duck-google/fpnifenmokdnegahekoobkoinidabcoi
Beschreibung Sometimes Duck Duck Go isn't perfect, here is a bailout that adds a simple button to duck duck go to google your term.
Dateigröße 12.82 KB
Installationsanzahl 1,222
Aktuelle Version 1.0.1
Letztes Update 2021-03-07
Veröffentlichungsdatum 2021-03-05
Bewertung 4.00/5 Insgesamt 5 Bewertungen
Entwickler http://clintonmedbery.dev
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Duck Duck Google",
    "version": "1.0.1",
    "description": "Sometimes Duck Duck Go isn't perfect, here is a bailout that adds a simple button to duck duck go to google your term.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.duckduckgo.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "duckDuckGoogle.js"
            ],
            "css": [
                "duck-duck.styles.css"
            ]
        }
    ],
    "icons": {
        "16": "images\/duckduckgoogle_16.png",
        "48": "images\/duckduckgoogle_48.png",
        "128": "images\/duckduckgoogle_128.png"
    },
    "manifest_version": 2
}