GreasyFork Script

171 阅读1分钟

京东只看当前商品评价

// ==UserScript==  
// @[name](https://www.v2ex.com/member/name) JD 商品页自动选择只看当前商品评论  
// @[namespace](https://www.v2ex.com/member/namespace) <http://tampermonkey.net/>  
// @[version](https://www.v2ex.com/member/version) 0.1  
// @[description](https://www.v2ex.com/member/description) try to take over the world!  
// @[author](https://www.v2ex.com/member/author) You  
// @[match](https://www.v2ex.com/member/match) <https://item.jd.com/*.html>  
// @[icon](https://www.v2ex.com/member/icon) <https://www.google.com/s2/favicons?sz=64&domain=jd.com>  
// @[grant](https://www.v2ex.com/member/grant) none  
// ==/UserScript==  
  
(function() {  
window.addEventListener('load', function() {  
$('[data-anchor=#comment]').trigger('click');  
setTimeout(function() {  
$('#comm-curr-sku').trigger('click');  
  
}, 3000);  
  
}, false);  
})();

好用点个赞就行