Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Thanks to Anthony Lieuallen.
  • Loading branch information
aboodman committed Nov 7, 2006
1 parent 7435284 commit 95749ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/chrome/chromeFiles/content/utils.js
Expand Up @@ -296,8 +296,8 @@ function GM_isGreasemonkeyable(url) {
.getService(Components.interfaces.nsIIOService)
.extractScheme(url);

return (scheme == "http" || scheme == "https" || scheme == "file") &&
!/hiddenWindow\.html$/.test(url);
return (scheme == "http" || scheme == "https" || scheme == "file" ||
url.match(/^about:cache/)) && !/hiddenWindow\.html$/.test(url);
}

function GM_isFileScheme(url) {
Expand Down

0 comments on commit 95749ee

Please sign in to comment.