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
/* Modified version of Brian Bennett's bookmarklet for blurring | |
images in a page lacking alt descriptions, added class for missing alts */ | |
// code version | |
(function() { | |
'use strict'; | |
function addCssRule(rule) { | |
var head, style; | |
head = document.querySelector('head'); |