Skip to content

Instantly share code, notes, and snippets.

@pastak
Created July 1, 2012 13:17
Show Gist options
  • Save pastak/3028404 to your computer and use it in GitHub Desktop.
Save pastak/3028404 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name removePleaseSharePost
// @namespace pastak.cosmio.net
// @description "〜たらシェア"がシェアされて流れてきたのを削除する
// @include *facebook.com
// @include *facebook.com/?*
// ==/UserScript==
var post,t,i, postList=document.querySelectorAll("li.uiListVerticalItemBorder[id]");
for(i=0;i<postList.length;i++){
post=postList[i];
t=post.querySelector("h6.uiStreamMessage");
if(t!=null&&t.textContent.match("たらシェア")){
post.style.display="none";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment