Hide w3schools on DuckDuckGo

Removes w3schools.com links from DuckDuckGo search results

Qu'est-ce que Hide w3schools on DuckDuckGo ?

Hide w3schools on DuckDuckGo est une extension Chrome développée par Inan Hira, et sa fonction principale est "Removes w3schools.com links from DuckDuckGo search results".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Hide w3schools on DuckDuckGo

Téléchargez les fichiers d'extension Hide w3schools on DuckDuckGo 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

                        tl;dr: This is a simple extension to remove w3schools links from DuckDuckGo search results.

w3schools is a proprietary website that provide information about web technologies like HTML, CSS, Javascript etc. Even though their SEO is top notch there are problems with their content:

1. The information they provide is not crowdsourced and open like MDN, often lacking proper documentation, examples and sources.
2. Their webpages contain various third party cookies and trackers
3. They serve targeted advertisements which could be inconvenient for their users

With all those problems, it is annoying to see them as top results on DuckDuckGo.

While helping websites like MDN to improve their SEO for better placement on search results is an option in the long run, this small tool helps to get rid of the annoyance.

This extension is inspired by "Hide w3schools" Firefox add-on by Stefano Nardo which works only for Google search results.

This add-on is open source, and the source is available at https://git.sr.ht/~eih/hide-w3schools-ddg for you to inspect and improve.                    

Informations de Base sur l'Extension

Nom Hide w3schools on DuckDuckGo Hide w3schools on DuckDuckGo
ID padgaefffafjjdnhgapchihmifoklphg
URL Officiel https://chromewebstore.google.com/detail/hide-w3schools-on-duckduc/padgaefffafjjdnhgapchihmifoklphg
Description Removes w3schools.com links from DuckDuckGo search results
Taille du Fichier 35.19 KB
Nombre d'Installations 63
Version Actuelle 1.1.2
Dernière Mise à Jour 2023-12-18
Date de Publication 2020-07-22
Évaluation 5.00/5 Total 3 Évaluations
Développeur Inan Hira
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://git.sr.ht/~eih/hide-w3schools-ddg
Langues Prises en Charge en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hide w3schools on DuckDuckGo",
    "version": "1.1.2",
    "description": "Removes w3schools.com links from DuckDuckGo search results",
    "browser_specific_settings": {
        "gecko": {
            "id": "{afa08970-6540-415d-9d9c-6649fe9aaab0}"
        }
    },
    "icons": {
        "48": "icons\/hide-w3schools-ddg-48.png",
        "96": "icons\/hide-w3schools-ddg-96.png",
        "128": "icons\/hide-w3schools-ddg-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.duckduckgo.com\/*"
            ],
            "js": [
                "hide-w3schools-ddg.js"
            ]
        }
    ]
}