Skip to content

Instantly share code, notes, and snippets.

@haf
Last active August 29, 2015 14:05
Show Gist options
  • Save haf/09b86318d2ee8a681919 to your computer and use it in GitHub Desktop.
Save haf/09b86318d2ee8a681919 to your computer and use it in GitHub Desktop.
xkcd.https.user.js
// ==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