Ainda não tenho nenhuma extensão / plugin adequado. Tentei usar o seguinte script de usuário com o TamperMonkey no Chrome. Está funcionando muito bem. Bloqueio de todos os gifs (incluindo gifs de ajax) no site 9gag.com. Por alguma razão, os gifs do ajax no google + não são bloqueados (investigando isso). Muito obrigado à Synetec por sua ajuda, esforço e código. Aqui está o script do usuário (a maioria dos scripts é copiada do script de usuário da Synetec ):
// ==UserScript==
// @name gifBlock
// @namespace http://i.have.no.homepage/
// @version 0.1
// @description Stops downloading gif images (including ajax gifs) in 9gag.com (or any page if you just fix the @match rule)
// @match http://*.9gag.com
// @copyright 2012+, Nobody
// ==/UserScript==
function tamperMonkeyWrap()
{
function log(m)
{
console.log(m);
}
function jQWrap($)
{
log("Extension execution begins...");
function blockGifs()
{
$('img').each(function() {
var $img = $(this),
src = $img.attr('src'),
w = $img.width(),
h = $img.height(),
cursor = $img.css('cursor'),
parts = src.split('.'),
ext = parts[parts.length-1];
if ($.trim(ext.toLowerCase()) != "gif")
return;
$img.attr('data-imgurl', src);
$img.data('cursor', cursor);
$img.css('cursor', 'pointer');
$img.addClass('gif-blocked');
h = h > 100? h : 100;
$img.attr('src', '//ipsumimage.appspot.com/'+w+'x'+h+'?l=Gif (Click)');
});
}
function interceptAjax () {
$('body').ajaxComplete(
function (event, requestData)
{
log("Blocking GIF [Ajax] ...");
blockGifs();
}
);
}
$(document).ready(function() {
log("Blocking GIF [Ready]....");
blockGifs();
interceptAjax();
$(document).on('click', 'img.gif-blocked', function(ev) {
var $img = $(this),
url = $img.attr('data-imgurl'),
cursor = $img.data('cursor');
$img.attr('src', url);
$img.css('cursor', cursor);
$img.removeClass('gif-blocked');
ev.preventDefault();
return false;
});
});
log("Document is not ready yet. trying block just in case it takes time to be _ready_ (google+).");
blockGifs();
}
if (window.jQuery == undefined)
{
log("Loading jQuery...");
var scriptTag = document.createElement('script');
scriptTag.src = "//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js";
scriptTag.onload = function(){
log("jQuery loaded.");
window.jQuery = jQuery;
jQWrap(jQuery);
};
document.getElementsByTagName('head')[0].appendChild(scriptTag);
}
else
{
log("jQuery already included in the page");
jQWrap(window.jQuery);
}
}
var scriptTag = document.createElement('script');
scriptTag.text = '(' + tamperMonkeyWrap.toString() + ')();';
document.getElementsByTagName('head')[0].appendChild(scriptTag);
Agora:
- Instale o TamperMonkey
- Ir para a dashboard
- Clique em 'novo script'
- Cole o código acima
- Salve e veja se funciona. (funciona apenas no 9gag.com agora. Mas você pode alterar a
@match
diretiva para corresponder a qualquer site que desejar. use @match http://*/*
para trabalhar em todos os sites (http). Altere https
para qualquer site http seguro, por exemplo, google +)
.gif
arquivos, mas se você deseja bloquear apenas.gif
arquivos animados , a extensão ainda precisará baixar os.gif
arquivos incorporados na página para determinar se eles são animados ou não. Sua melhor aposta é bloquear todos os GIFs. (Acabei de pensar em uma idéia que poderia funcionar bem, mas acho que não foi concluída. Se tiver algum tempo, tentarei criar algo para o caso de ninguém saber de uma solução existente.)