inee

发现了Bing无节操的一面

  •  
  •   inee · Oct 2, 2013 · 5812 views
    This topic created in 4604 days ago, the information mentioned may be changed or developed.
    前几天还夸了,他不带链接跳转

    cookie保护的比百度好,搜索速度比百度快
    但今天搜索美团网,左下角显示的是官网干净的链接

    但是点进去,地址栏





    大家推荐个搜索数据全的,仅次于Google,节操好的搜索引擎吧
    18 replies    1970-01-01 08:00:00 +08:00
    pathletboy
        1
    pathletboy  
       Oct 2, 2013
    www.dg.meituan.com 404,貌似之前被重定向了吧?
    ETiV
        2
    ETiV  
       Oct 2, 2013
    用GM脚本屏蔽掉链接的 mousedown 事件就可以了~
    shiny
        3
    shiny  
    PRO
       Oct 2, 2013
    fq 用 Google 就好了嘛。
    hylau
        4
    hylau  
       Oct 2, 2013
    小鸭快跑?duckduckgo.com
    arapat
        5
    arapat  
       Oct 2, 2013
    我没有太理解,看起来是美团在Bing上投了广告,但是作为广告第一个链接没有加上特别的标注?
    caomu
        6
    caomu  
       Oct 2, 2013
    域名没问题啊,就是后面多了些跟踪的参数,人家也要做些统计什么的吧,除了地址栏不好看也没什么大害处啊,在互联网上想绝对没隐私不太可能。
    Hawk
        7
    Hawk  
       Oct 2, 2013
    @hylau duckduckgo之前还在哪里看到被人说垃圾
    fanzeyi
        8
    fanzeyi  
       Oct 2, 2013
    这不是很正常么,记录访客来源的。

    https://support.google.com/analytics/answer/1033863?hl=en
    rqrq
        9
    rqrq  
       Oct 2, 2013   ❤️ 1
    明明就是打开美团网站之后,网站自己又跳转了一下,加上了来源代码……
    yfdyh000
        10
    yfdyh000  
       Oct 2, 2013
    经楼上提醒才发现是美团跳的,不是Bing的JS……
    curl -I -e "http://cn.bing.com/search?q=%E7%BE%8E%E5%9B%A2" www.meituan.com
    dispass
        11
    dispass  
       Oct 2, 2013
    呵呵 谷歌的统计系统 何必大惊小怪
    inee
        12
    inee  
    OP
       Oct 2, 2013
    @ETiV 有现成的脚本下载么?
    ivenvd
        13
    ivenvd  
       Oct 2, 2013
    我猜你想要的是 startpage.com
    9hills
        14
    9hills  
       Oct 2, 2013
    utm这个是ga来着
    inee
        15
    inee  
    OP
       Oct 2, 2013
    @ivenvd 感谢
    ETiV
        16
    ETiV  
       Oct 2, 2013
    @inee 已经不知道从哪里找到的了:

    // ==UserScript==
    // @name 去掉Google搜索跳转
    // @namespace LOCALHOST
    // @include https://www.google.co*
    // @include http://www.google.co*
    // @grant GM_setValue
    // @version 1
    // ==/UserScript==

    document.addEventListener('DOMNodeInserted',checksearch,false);

    function checksearch(){
    var list = document.getElementById('ires');
    if(list){
    document.removeEventListener('DOMNodeInserted',checksearch,false);
    document.addEventListener('DOMNodeInserted',clear,false);
    };
    }

    function clear(){
    var items = document.querySelectorAll('a[onmousedown]');
    for(var i =0;i<items.length;i++){
    items[i].removeAttribute('onmousedown');
    }
    }
    inee
        17
    inee  
    OP
       Oct 2, 2013
    @ETiV 查看你GM里的更新源地址
    linuxer
        18
    linuxer  
       Oct 3, 2013
    @ETiV DOMNodeInserted 略耗资源吧,感觉用MutationObserver会更好。
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   1077 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 73ms · UTC 22:55 · PVG 06:55 · LAX 15:55 · JFK 18:55
    ♥ Do have faith in what you're doing.