// ==UserScript== // @name TumblrEvilDetector // @namespace http://elfsternberg.com // @version 0.1 // @description Detect if a Tumblr post has an embedded script in it // @author Elf M. Sternberg // @match http://*.tumblr.com/post/* // @grant none // ==/UserScript== /* jshint -W097 */ 'use strict'; function tumblr_reblog_warning() { var post = document.querySelectorAll('.post-wrapper script'); if (post.length > 0) { document.body.innerHTML += ('
' + 'SCRIPT DETECTED
'); } } window.setTimeout(tumblr_reblog_warning, 500);