Last active
May 9, 2016 16:44
-
-
Save Mossuru777/0dfe8c37520ac19fc90c8e721642e73f to your computer and use it in GitHub Desktop.
バイバイプロモ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
function goodbyePromo() { | |
$('div.promoted-tweet').children('div.content').children('div.context').children('button.js-action-dismiss').click(); | |
}; | |
goodbyePromo(); | |
var mo = new MutationObserver(goodbyePromo); | |
mo.observe($('div.stream-container').get(0), {'attributes':true, 'childList': true, 'subtree': true}); | |
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
!function(){function t(){$("div.promoted-tweet").children("div.content").children("div.context").children("button.js-action-dismiss").click()}t();var e=new MutationObserver(t);e.observe($("div.stream-container").get(0),{attributes:!0,childList:!0,subtree:!0})}(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment