编辑:为什么这不起作用?
@match http://tumblr.com/*
$(document).ready(function() {
$(img).each(function() {
var i = $(this).attr("src");
var n = i.replace("http://", "https://");
$(this).attr("src", function() {
return n;
});
});
});
编辑:要清楚,我不拥有该网站。我想在https://facebook.com/和https://tumblr.com/之类的网站上使用 https。