Skip to content

Commit

Permalink
a little blacklist update
Browse files Browse the repository at this point in the history
  • Loading branch information
StigNygaard committed Jul 13, 2024
1 parent 020cd71 commit 9dee579
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion WebExtension/contentscript.js
Original file line number Diff line number Diff line change
Expand Up @@ -467,11 +467,14 @@
}, {
url: "https://static.xx.fbcdn.net/rsrc.php/v3/yt/r/pQ6WpMqXLJA.png",
regexp: false
}, {
url: "https://static.cdninstagram.com/images/instagram/xig_legacy_spritesheets/sprite_core.png",
regexp: false
}, {
url: "https://static.cdninstagram.com/rsrc.php/v3/y5/r/TJztmXpWTmS.png",
regexp: false
}].some(function (item) {
return src === item.url
return src.startsWith(item.url);
});
}

Expand Down

0 comments on commit 9dee579

Please sign in to comment.