Skip to content

Instantly share code, notes, and snippets.

@bennettscience
Last active April 8, 2023 17:32
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save bennettscience/fe77422e24c9df7378655d2b6001a2fa to your computer and use it in GitHub Desktop.
(function() {
'use strict';
function addCssRule(rule) {
var head, style;
head = document.querySelector('head');
if(!head) {
return;
}
style = document.createElement('style');
style.type='text/css';
style.innerHTML=rule;
head.appendChild(style);
}
addCssRule("img[alt=''],img:not([alt]){filter: blur(10px) !important;outline: 10px solid !important; }");
})();
@cogdog
Copy link

cogdog commented Nov 4, 2021

Thanks Brian! I'm not getting any action, seeing in my console on every site I try:

Uncaught SyntaxError: missing ) after argument list

Sorry!

@bennettscience
Copy link
Author

Not sure why that's happening - this was copied and pasted right from the script running on my machine. Do you have other scripts running through Tampermonkey? Could be a conflict somewhere...

@cogdog
Copy link

cogdog commented Nov 4, 2021

No monkey scripts here, but I just re-installed script and it works.

Also this might catch both empty alt and missing alt

 img[alt=””], img:not([alt]) {
    ….
 }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment