42 lines
957 B
JavaScript
42 lines
957 B
JavaScript
//META{"name":"agif"}*//
|
|
|
|
var agif = function () {};
|
|
|
|
agif.prototype.convert = function () {
|
|
$(".image canvas").each(function() {
|
|
var src = $(this).attr("src");
|
|
if(src != undefined) {
|
|
$(this).replaceWith('<img src="'+src+'"></img>');
|
|
}
|
|
});
|
|
};
|
|
|
|
agif.prototype.onMessage = function () {
|
|
this.convert();
|
|
};
|
|
agif.prototype.onSwitch = function () {
|
|
this.convert();
|
|
};
|
|
agif.prototype.start = function () {
|
|
this.convert();
|
|
};
|
|
|
|
agif.prototype.load = function () {};
|
|
agif.prototype.unload = function () {};
|
|
agif.prototype.stop = function () {};
|
|
agif.prototype.getSettingsPanel = function () {
|
|
return "";
|
|
};
|
|
|
|
agif.prototype.getName = function () {
|
|
return "Autogif";
|
|
};
|
|
agif.prototype.getDescription = function () {
|
|
return "Autoplay gifs without having to hover.";
|
|
};
|
|
agif.prototype.getVersion = function () {
|
|
return "0.1.0";
|
|
};
|
|
agif.prototype.getAuthor = function () {
|
|
return "Jiiks";
|
|
}; |