惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

MongoDB | Blog
MongoDB | Blog
Recorded Future
Recorded Future
Jina AI
Jina AI
The Register - Security
The Register - Security
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
月光博客
月光博客
博客园 - 三生石上(FineUI控件)
F
Fortinet All Blogs
人人都是产品经理
人人都是产品经理
S
SegmentFault 最新的问题
Apple Machine Learning Research
Apple Machine Learning Research
L
LangChain Blog
Y
Y Combinator Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
GbyAI
GbyAI
The GitHub Blog
The GitHub Blog
Vercel News
Vercel News
博客园 - 【当耐特】
雷峰网
雷峰网
The Cloudflare Blog
阮一峰的网络日志
阮一峰的网络日志
aimingoo的专栏
aimingoo的专栏
云风的 BLOG
云风的 BLOG
I
InfoQ
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Google DeepMind News
Google DeepMind News
Security Latest
Security Latest
有赞技术团队
有赞技术团队
L
Lohrmann on Cybersecurity
P
Proofpoint News Feed
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
The Last Watchdog
The Last Watchdog
P
Privacy & Cybersecurity Law Blog
Scott Helme
Scott Helme
Google Online Security Blog
Google Online Security Blog
WordPress大学
WordPress大学
Hacker News - Newest:
Hacker News - Newest: "LLM"
NISL@THU
NISL@THU
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
B
Blog RSS Feed
Cyberwarzone
Cyberwarzone
K
Kaspersky official blog
F
Full Disclosure
Martin Fowler
Martin Fowler
Spread Privacy
Spread Privacy
D
Docker
C
Cisco Blogs
www.infosecurity-magazine.com
www.infosecurity-magazine.com
H
Hacker News: Front Page

博客园 - 碟子 QQ:9997452

SQL用例集锦 对【SQL SERVER 分布式事务解决方案】的心得补充 解决chrome浏览器安装扩展、应用程序一直处在“检查中”的问题 【转载】通过java的jcifs类库访问网上邻居共享文件[代码] 【转帖】科学对待 健康养猫 打造快乐孕妇 VBA一例:如何保持文本框焦点 FlashPaper 2 API 中文版 【转载】Windows 7 mklink命令详解 后网盘时代:网盘+同步=云存储 [2012年7月31日更新] 安装veket到移动硬盘NTFS分区 启用网络 DTC 访问 【腾讯通服务器的消息集成解决方案】之与勤哲Excel服务器的集成 CureIt! 简单Repack(去广告窗口) 解决Windows域管理的几个经典问题 【飘雪驱动器管理大师(USB禁用、USB加锁)】原理分析 关于ASP.NET中用Response.Write()方法响应导致页面字体变大的问题 用于HTTP加密浏览的TW2.0插件 Microsoft Windows Workflow Foundation 入门 Atlas 和 ASP.Net AJAX
关于“点击这里继续访问您选择的百度XXX”
碟子 QQ:9997452 · 2012-09-12 · via 博客园 - 碟子 QQ:9997452

好久没有更新博客了,实在是太忙(其实也很懒

最近百度做了一件事,就是抵制其它搜索引擎,现象就是当我用google等其它搜索引擎搜索时,如果搜出来的结果指向百度文库、百度知道等等百度旗下一系列产品,都会无一例外的被重定向到百度搜索首页,,出现“点击这里继续访问您选择的百度。。。” 。如下图:

实在是无聊透顶~好在我用chrome浏览器,好在我会写greasemonkey的脚本,让他们大战去,我自个儿玩自个儿的~

 // ==UserScript==

// @name       百度搜索跳转
//
 @namespace  cancelpj.cnblogs.com
//
 @version    1.0
//
 @description  当访问百度产品页时,默认被重定向到百度搜索首页,此脚本用来抵制重定向。
//
 @match      http://www.baidu.com/*
//
 @copyright  2012+, 碟仙
//
 ==/UserScript==
(function(){
    var debug = 0;
    var path = document.getElementById('warning_url');
    if ( debug > 0 ) {
        alert( path.toString().length+' '+path);
    };
    if ( path.toString().length > 0) path.click();
})();

管好我的一亩三分地~