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

推荐订阅源

W
WeLiveSecurity
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
Hacker News - Newest:
Hacker News - Newest: "LLM"
Cloudbric
Cloudbric
V
Visual Studio Blog
L
LangChain Blog
A
About on SuperTechFans
B
Blog
T
Tenable Blog
罗磊的独立博客
Hacker News: Ask HN
Hacker News: Ask HN
Blog — PlanetScale
Blog — PlanetScale
博客园 - 三生石上(FineUI控件)
The Register - Security
The Register - Security
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
P
Palo Alto Networks Blog
U
Unit 42
WordPress大学
WordPress大学
D
Darknet – Hacking Tools, Hacker News & Cyber Security
N
News and Events Feed by Topic
T
Threat Research - Cisco Blogs
C
Check Point Blog
Security Latest
Security Latest
M
MIT News - Artificial intelligence
Application and Cybersecurity Blog
Application and Cybersecurity Blog
宝玉的分享
宝玉的分享
P
Proofpoint News Feed
NISL@THU
NISL@THU
Forbes - Security
Forbes - Security
S
Securelist
Security Archives - TechRepublic
Security Archives - TechRepublic
Hugging Face - Blog
Hugging Face - Blog
aimingoo的专栏
aimingoo的专栏
Latest news
Latest news
GbyAI
GbyAI
T
Troy Hunt's Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
L
LINUX DO - 热门话题
V2EX - 技术
V2EX - 技术
小众软件
小众软件
Google DeepMind News
Google DeepMind News
K
Kaspersky official blog
C
CXSECURITY Database RSS Feed - CXSecurity.com
O
OpenAI News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
N
Netflix TechBlog - Medium
www.infosecurity-magazine.com
www.infosecurity-magazine.com
Google DeepMind News
Google DeepMind News
P
Proofpoint News Feed

博客园 - 碟子 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();
})();

管好我的一亩三分地~