Skip to content

Instantly share code, notes, and snippets.

View roshanvid's full-sized avatar

Roshan Vid roshanvid

  • San Francisco Bay Area
View GitHub Profile
@roshanvid
roshanvid / fontswitcher.js
Created February 14, 2020 23:17 — forked from growse/fontswitcher.js
Bookmarklet that lets you apply arbitrary google fonts to jQuery selectors.
var bkmkltFontChooser = function () {
return {
v: "1.10.2",
jQueryDone: false,
webfontDone: false,
fontChooserLoaded: false,
loadjQuery: function () {
if (window.jQuery === undefined || window.jQuery.fn.jquery < bkmkltFontChooser.v) {
console.log("Loading jQuery");
var script = document.createElement("script");