1
iray1991 OP 找到一个失效的,有人能改进一下?
Douban Rating Show Douban Rating in Douban List http://userscripts.org/scripts/show/88972 源代码: // ==UserScript== // @version 1.0 // @name Douban Rating // @author Zhou Meng // @description Show Douban Rating in Douban List // @include http://*.douban.com/doulist/* // ==/UserScript== var $; (function waitJquery() { if (!unsafeWindow.jQuery) { setTimeout(waitJquery, 100); } else { $ = unsafeWindow.jQuery; doScript(); } })(); function doScript() { $("div.article table").each(function(i, table) { var url = $(table).find("a").attr("href"); $.get(url, function(data) { var rating = $(data).find("strong.rating_num").text(); if (rating) { $(table).find("p.pl").append("<br />" + "评分 : " + rating); } }); }); } |
2
yesmeck 2012-01-31 10:00:05 +08:00
我试了下能用的,那个评分是显示在出版社下面的,比较不明显。
|
3
iray1991 OP @yesmeck
咦,我还是找不到呀,能否截个图给我看看呢? 我在这个页面试了,chrome和chromeplus上都木有呢:http://book.douban.com/doulist/1374858/ |
4
yesmeck 2012-01-31 10:33:15 +08:00
chrome下确实不行,我改了下https://gist.github.com/1708345
|
6
yesmeck 2012-01-31 11:14:55 +08:00
|
7
iray1991 OP |
9
iray1991 OP @yesmeck
目前chrome升级到22后发现这个脚本又失效了,能否改进一下呢? 如果可以的话最好能够高亮评分,见:http://www.douban.com/group/topic/28639280/ |