Last active
August 29, 2015 14:05
-
-
Save haf/09b86318d2ee8a681919 to your computer and use it in GitHub Desktop.
xkcd.https.user.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name xkcd.https | |
// @namespace haf | |
// @description Loads images over https | |
// @include https://xkcd.com/* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
jQuery("#comic img").attr("src", jQuery("#comic img").attr("src").replace("http:", "https:")) | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment