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
官方網址 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
電子郵箱 [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"
            ]
        }
    ]
}