您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
expands conversations?
当前为
// ==UserScript== // @name twitter conversation opener // @version 0.1 // @description expands conversations? // @author vG Rejected // @match *://twitter.com/* // @grant none // @require http://code.jquery.com/jquery-latest.js // @namespace https://greasyfork.org/users/9702 // ==/UserScript== document.addEventListener("DOMContentLoaded", viewConversations, false ); if( document.readyState == "complete" ) { conversationInterval = setInterval(viewConversations(), 30000);//30 second refresh rate } function viewConversations() { $('[id^="stream-item-activity-"]').find("div > div.content > div.stream-item-footer > a > b > span.expand-stream-item.js-view-details").each(function() { if(this.innerHTML == "View conversation"){ this.click(); } }); }