DuckDuckGo Hider/Disguiser

Search like a pro, look like a normy!

Qu'est-ce que DuckDuckGo Hider/Disguiser ?

DuckDuckGo Hider/Disguiser est une extension Chrome développée par samgusickdev, et sa fonction principale est "Search like a pro, look like a normy!".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension DuckDuckGo Hider/Disguiser

Téléchargez les fichiers d'extension DuckDuckGo Hider/Disguiser au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        If you've ever valued your privacy on the internet, chances are DuckDuckGo is your search engine of choice. 

However, every DuckDuckGo user is inevitably bullied on the playground or in the workplace when they open google chrome and up pops the DuckDuckGo logo, exposing you and your non-normy searching habits.

Well now you can peacefully and discretely use DuckDuckGo with this extension!

Your startup and new tab pages will go directly to the DuckDuckGo Website, and swap out that Duck logo with the Google logo so you blend in with the normys and their google search engines with hideous amounts of trackers!                    

Informations de Base sur l'Extension

Nom DuckDuckGo Hider/Disguiser DuckDuckGo Hider/Disguiser
ID peejgoigkpplepmhfloekijbnneikjcb
URL Officiel https://chromewebstore.google.com/detail/duckduckgo-hiderdisguiser/peejgoigkpplepmhfloekijbnneikjcb
Description Search like a pro, look like a normy!
Taille du Fichier 53.89 KB
Nombre d'Installations 165
Version Actuelle 1.0.0.2
Dernière Mise à Jour 2022-09-15
Date de Publication 2021-06-16
Évaluation 5.00/5 Total 1 Évaluations
Développeur samgusickdev
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "DuckDuckGo Hider\/Disguiser",
    "version": "1.0.0.2",
    "icons": {
        "128": "Logo-2.png"
    },
    "author": "Sam Gusick",
    "description": "Search like a pro, look like a normy!",
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/duckduckgo.com\/"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "permissions": [
        "tabs"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "frame.html",
                "frame2.html"
            ],
            "matches": [
                "*:\/\/duckduckgo.com\/*"
            ]
        }
    ],
    "chrome_settings_overrides": {
        "startup_pages": [
            "https:\/\/sgusick.w3.uvm.edu\/google_logo_site\/index.html"
        ]
    }
}