Adds the download attribute to http://scoopsmeatland.blogspot.com/ links for easy downloading
// ==UserScript==
// @name ScoopsMeatland add download attribute
// @namespace http://your.homepage/
// @version 1
// @description Adds the download attribute to http://scoopsmeatland.blogspot.com/ links for easy downloading
// @author KMC
// @match http://scoopsmeatland.blogspot.com/
// @run-at document-end
// @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js
// @grant none
// ==/UserScript==
var element = $("a[href]");
element.each(function(index, value) {
if($(element[index]).attr("href").split('.').pop() == "mp3"){
$(element[index]).attr("download", "");
}
});