Skip to content

Instantly share code, notes, and snippets.

@miya2000
Created September 18, 2011 01:08
Show Gist options
  • Select an option

  • Save miya2000/1224551 to your computer and use it in GitHub Desktop.

Select an option

Save miya2000/1224551 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Google Web Fonts - for Opera12
// @author miya2000
// @include http://www.google.com/webfonts
// ==/UserScript==
(function(){
opera.addEventListener('BeforeScript', function(e) {
var script = e.element;
if (/\.cache\.js$/.test(script.src)) {
script.text = script.text.replace(/"keypress"/g, '\\"keypress\\"');
}
}, false);
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment