移除搜索结果

输入网站名或链接,关于该网站的搜索结果就不会在搜索引擎下显示,当前只支持百度。

What is 移除搜索结果?

移除搜索结果 is a Chrome extension developed by iVapor, and its main feature is "输入网站名或链接,关于该网站的搜索结果就不会在搜索引擎下显示,当前只支持百度。".

Extension Screenshots

screenshot
screenshot

Download 移除搜索结果 Extension CRX File

Download 移除搜索结果 extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        在使用搜索引擎时,一些网站的信息总是阴魂不散。例如一些购物网站、旅游的网站,占据了搜索结果。严重干扰了您获取信息的速度。对于开发者来说,某 SDN 的信息也会影响你看真正的技术博客。

本扩展能够将搜索结果中的指定网站信息进行移除,比如我不想看到关于知乎的搜索结果,那么点击右上角的图标,输入「知乎」后,关于知乎的搜索结果就不会显示。您总是可以关闭某个网站的移除效果,通过在列表里选择禁用。而不是禁用整个扩展。

您可以选择屏蔽大部分网站,但是,扩展不会屏蔽搜索结果首位的官网。也许有一天,您真的想访问这个网站。

如在使用过程中碰到任何问题,请在 github 上 issue 我。(https://github.com/iVapor/remove-search-result)                    

Extension Basic Information

Name 移除搜索结果 移除搜索结果
ID ddmhkakmaioldjigppjffdoaahheegch
Official URL https://chromewebstore.google.com/detail/%E7%A7%BB%E9%99%A4%E6%90%9C%E7%B4%A2%E7%BB%93%E6%9E%9C/ddmhkakmaioldjigppjffdoaahheegch
Description 输入网站名或链接,关于该网站的搜索结果就不会在搜索引擎下显示,当前只支持百度。
File Size 558 KB
Installation Count 17
Current Version 1.0.0
Last Updated 2020-01-28
Publish Date 2020-01-28
Rating 3.50/5 Total 2 Ratings
Developer iVapor
Email [email protected]
Payment Type free
Supported Languages zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "\u79fb\u9664\u641c\u7d22\u7ed3\u679c",
    "short_name": "\u79fb\u9664\u641c\u7d22\u7ed3\u679c\u4e0b\u7684\u6307\u5b9a\u7f51\u7ad9\u4fe1\u606f",
    "version": "1.0.0",
    "description": "\u8f93\u5165\u7f51\u7ad9\u540d\u6216\u94fe\u63a5\uff0c\u5173\u4e8e\u8be5\u7f51\u7ad9\u7684\u641c\u7d22\u7ed3\u679c\u5c31\u4e0d\u4f1a\u5728\u641c\u7d22\u5f15\u64ce\u4e0b\u663e\u793a\uff0c\u5f53\u524d\u53ea\u652f\u6301\u767e\u5ea6\u3002",
    "icons": {
        "16": "icons\/icon.png",
        "48": "icons\/icon.png",
        "128": "icons\/icon.png"
    },
    "browser_action": {
        "default_title": "Remove Search Result",
        "default_popup": "index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.baidu.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "hotReload.js"
        ]
    }
}