Hide w3schools on DuckDuckGo

Removes w3schools.com links from DuckDuckGo search results

Hide w3schools on DuckDuckGoとは何ですか?

Hide w3schools on DuckDuckGoはInan Hiraによって開発されたChromeの拡張機能で、その主な機能は「Removes w3schools.com links from DuckDuckGo search results」です。

拡張機能のスクリーンショット

screenshot
screenshot

Hide w3schools on DuckDuckGo拡張機能のCRXファイルをダウンロード

Hide w3schools on DuckDuckGo拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Hide w3schools on DuckDuckGo Hide w3schools on DuckDuckGo
ID padgaefffafjjdnhgapchihmifoklphg
公式URL https://chromewebstore.google.com/detail/hide-w3schools-on-duckduc/padgaefffafjjdnhgapchihmifoklphg
説明 Removes w3schools.com links from DuckDuckGo search results
ファイルサイズ 35.19 KB
インストール数 63
現在のバージョン 1.1.2
最終更新日 2023-12-18
公開日 2020-07-22
評価 5.00/5 合計 3 レビュー
開発者 Inan Hira
Eメール [email protected]
支払い方法 free
ヘルプページのURL https://git.sr.ht/~eih/hide-w3schools-ddg
対応言語 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"
            ]
        }
    ]
}