Greasy Fork is available in English.
不再为打开一个帖子看完回退烦恼了
// ==UserScript== // @name 豆瓣小组中帖子新窗口打开 // @version 0.1.0 // @description 不再为打开一个帖子看完回退烦恼了 // @author [email protected] // @include *douban.com* // @grant none // @namespace http://greasyfork.icu/users/129395 // ==/UserScript== (function() { $('.title a').click(function(){ var url =$(this).attr('href'); window.open(url); return false; }); })();