如何在Twitter对话中的每个无限滚动事件上执行Greasemonkey脚本?

时间:2015-01-28 14:00:35

标签: javascript twitter greasemonkey

我正在尝试制作一个可以在Twitter对话中使用的greasemonkey用户文件 (为名称,用户名和每个第1个@reply着色。)

当Twitter对话有很多回复时(example link),
然后打开这样一个链接只显示3个回复(最初的屏幕+ 2个以上) - 至少在我的1920x1200显示器中 - 然后你必须手动向下滚动才能看到其余的回复。

如何在每个无限滚动事件上执行脚本 (在每个Mousewheel downPgDnDown arrow ↓按键上)?

有人建议:

  

尝试检查FF devtools调试器中的代码(右键单击代码   并选择'美化源')来了解infiniteScrollWatcher是怎样的   触发

所以,我想我应该使用一个事件监听器绑定到这个函数 EventTarget.addEventListener, 但我不知道(这个功能对我来说太先进了)

该功能的美化来源是:

function infiniteScrollWatcher() {
  var a = 0,
  b = 1;
  this.checkScrollPosition = function () {
    var c = this.webkitFullscreenElement();
    if (c && this.node != c && !c.contains(this.node)) return;
    var d = this.$content.height(),
    e = !1;
    this.inTriggerRange(a) && (d > this.lastTriggeredHeight || this.lastTriggeredFrom(b)) ? (this.trigger('uiNearTheTop'), this.lastTriggerFrom = a, e = !0)  : this.inTriggerRange(b) && (d > this.lastTriggeredHeight || this.lastTriggeredFrom(a)) && (this.trigger('uiNearTheBottom'), this.lastTriggerFrom = b, e = !0),
    e && (this.lastTriggeredHeight = d)
  },
  this.inTriggerRange = function (c) {
    var d = this.$content.height(),
    e = this.$node.scrollTop(),
    f = e + this.$node.height(),
    g = Math.abs(Math.min(f - d, 0)),
    h = this.$node.height() / 2;
    return e < h && c == a || g < h && c == b
  },
  this.lastTriggeredFrom = function (a) {
    return this.lastTriggerFrom === a
  },
  this.resetScrollState = function () {
    this.lastTriggeredHeight = 0,
    this.lastTriggerFrom = - 1
  },
  this.webkitFullscreenElement = function () {
    return document.webkitFullscreenElement
  },
  this.after('initialize', function () {
    this.resetScrollState(),
    this.$content = this.attr.contentSelector ? this.select('contentSelector')  : $(document),
    this.on('scroll', utils.throttle(this.checkScrollPosition.bind(this), 100)),
    this.on('uiTimelineReset', this.resetScrollState),
    this.on('uiSwiftLoaded uiPageChanged', this.checkScrollPosition)
  })
}

1 个答案:

答案 0 :(得分:1)

不同的方法:

Twitter通过jQuery发送获取结果的请求,路径为:

/twitter.com/i/[username]/conversation/[conversationid]?[query]

jQuery包含向所有ajax请求添加全局成功处理程序的选项,您可以使用此处理程序。

处理程序内部:

  1. 解析当前网址以获取用户名和conversation-id
  2. 根据上面的路径测试AJAX请求的url(将username和conversation-id替换为步骤#1的结果)
  3. 检查响应是否包含属性items_html,其中包含非空白字符
  4. 当步骤#2&amp; #3是成功的,已加载新项目,执行所需的说明。

    样品:

    // ==UserScript==
    // @name        twitter
    // @namespace   twitter
    // @include     https://twitter.com/*
    // @version     1
    // @grant       none
    // ==/UserScript== 
    
    window.addEventListener('load', function() {
    
            var path=location.pathname.split(/\//,5),_url;
    
            //check if we're inside a conversation
            if(path.length>=4 && path[2]==='status' && !isNaN(path[3])){
    
              //create the path for the comparison
              _url='/'+['i',path[1],'conversation',path[3]].join('/')+'?';
    
              $(document).ajaxSuccess(function(a, b, opts, data) {
                if (opts.url.indexOf(_url) === 0 //urls match
                      &&
                    data.items_html
                      &&
                    data.items_html.match(/\S/)//new items availabe
                ) {
                    //do what you want to
                    alert('new content inserted');
                }
            });
            }
    
        },
        false);
    

    但是当您只想应用自定义样式时,您不需要关心新内容,只需在文档中添加带有一些自定义规则的样式表(也可以通过Stylish完成) :

    // ==UserScript==
    // @name        twitter
    // @namespace   twitter
    // @include     https://twitter.com/*
    // @version     2
    // @grant       none
    // ==/UserScript==
    
    var style=document.createElement('style');
    document.getElementsByTagName('head')[0].appendChild(style);
    //name
    style.sheet.insertRule('.tweet .stream-item-header strong.fullname' +
                           '{background:tomato;color:white}',0);
    //username
    style.sheet.insertRule('.tweet .stream-item-header span.username' +
                           '{background:tomato;color:black}',0);
    //first @reply
    style.sheet.insertRule('.tweet .tweet-text a.twitter-atreply:first-of-type *' +
                           '{background:blue;color:orange !important;}',0);