- NAME
- FEATURES
- INSTALLATION
- USAGE
- DESCRIPTION
- TYPES
- API
- COMPATIBILITY
- DEVELOPMENT
- SEE ALSO
- VERSION
- AUTHOR
- COPYRIGHT AND LICENSE
gm-compat - portable monkey-patching for userscripts
$ npm install gm-compat
// ==UserScript==
// @name My Userscript
// @description A userscript which hooks XMLHttpRequest#open
// @include https://www.example.com/*
// @require https://unpkg.com/[email protected]
// ==/UserScript==
const xhrProto = GMCompat.unsafeWindow.XMLHttpRequest.prototype
const oldOpen = xhrProto.open
function open (method, url) {
if (url === TARGET) {
this.addEventListener('load', () => {
process(this.responseText)
})
}
GMCompat.apply(this, oldOpen, arguments)
}
xhrProto.open = GMCompat.export(open)
gm-compat is a tiny compatibility shim for userscripts which provides uniform,
cross-engine access to unsafeWindow
, cloneInto
and exportFunction
. These can be used to portably modify
page properties, e.g. to hook XMLHttpRequest#open
to intercept
HTTP requests.
Modifications to a page's window (unsafeWindow
) need to use the cloneInto
and exportFunction
functions on Firefox. However, these functions are not
available by default in Chrome. In addition, unsafeWindow
is not the actual
unsafeWindow
object in all engines.
Since the functions are needed on Firefox, the options for writing portable scripts which modify page properties are either to implement browser/engine-specific code in each script or to use a shim which exposes an API that works with all engines. gm-compat provides an implementation of the latter.
When the functions are not needed (i.e. in Chrome), they're implemented as pass-through (identity) functions, so they work consistently in all cases.
Note that GMCompat
is a local variable (declared with const
), not a
property of the window object. This ensures that each script running on a page
can have its own isolated version of gm-compat without conflicts.
Because writing portable code which modifies page properties is error-prone and long-winded. This shim aims to abstract away the inconsistencies and incompatibilities so that scripts don't need to reinvent it.
There may be no need to use this if scripts don't require Greasemonkey APIs and
are able to operate directly in the page context (i.e. @grant none
), although
note that @grant none
is not supported by all engines, and
@grant none
(and unsafeWindow
) doesn't portably work on all sites.
The following types are referenced in the descriptions below.
type CloneIntoOptions = {
cloneFunctions?: boolean;
target?: object;
wrapReflectors?: boolean;
};
type ExportOptions = {
target?: object;
};
type ExportFunctionOptions = {
allowCrossOriginArguments?: boolean;
defineAs?: string;
target?: object;
};
Type: <A extends ArrayLike, R>($this: any, fn: ((...args: A) => R), args: A) => R
Safely call a page function with an arguments
object or array of arguments
from the script context. This is needed to avoid security errors when passing
arguments from the script to the page, e.g.:
This doesn't work:
function open (method, url) {
if (url === TARGET) // ...
// XXX Error: Permission denied to access property "length"
oldOpen.apply(this, arguments)
}
This works:
function open (method, url) {
// ...
GMCompat.apply(this, oldOpen, arguments) // OK
}
Type: <A extends any[], R>($this: any, fn: ((...args: A) => R), ...A) => R
Safely call a page function with arguments from the script context. This is needed to avoid security errors when passing arguments from the script to the page, e.g.:
This doesn't work:
// XXX Error: Permission denied to access property "value"
GMCompat.unsafeWindow.notify('loaded', { value: 42 })
This works:
GMCompat.call(undefined, GMCompat.unsafeWindow.notify, 'loaded', { value: 42 }) // OK
Type: <T extends object>(object: T, options?: CloneIntoOptions) => T
Portable access to Firefox's cloneInto
function, which returns a
version of the supplied object that can be accessed in the provided context.
const dummyPerformance = {
now () { ... }
}
GMCompat.unsafeWindow.performance = GMCompat.cloneInto(dummyPerformance)
If no options are supplied, the default values are:
{ cloneFunctions: true, target: GMCompat.unsafeWindow, wrapReflectors: true }
If supplied, they are merged into/override the defaults.
Type:
<T extends Function>(value: T, options?: ExportOptions) => T
<T extends object>(value: T, options?: ExportOptions) => T
A wrapper function which delegates to cloneInto
or
exportFunction
, depending on the type of its argument,
i.e.:
const fn = () => { ... }
GMCompat.export(fn)
is equivalent to:
GMCompat.exportFunction(fn)
and:
const obj = { ... }
GMCompat.export(obj)
is equivalent to:
GMCompat.cloneInto(obj)
An optional options object can be supplied to override the default target
(unsafeWindow
). This is passed as the options parameter to
cloneInto
or exportFunction
and merged
into their default options.
GMCompat.export(obj, { target: iframe })
Type: <T extends Function>(fn: T, options?: ExportFunctionOptions) => T
Portable access to Firefox's exportFunction
function, which
returns a version of the supplied function that can be executed in the provided
context.
function log () { }
GMCompat.unsafeWindow.log = GMCompat.exportFunction(log)
If no options are supplied, the default values are:
{ allowCrossOriginArguments: false, target: GMCompat.unsafeWindow }
If supplied, they are merged into/override the defaults.
Type: Window
Portable access to the page's window. This is distinct from the window
object
in userscripts, which is an isolated wrapper of the original window (i.e. the
page's window
can't see properties of the userscript's window
).
GMCompat.unsafeWindow.log = GMCompat.unsafeWindow.noop
Note that accessing unsafeWindow
directly, AKA window.unsafeWindow
, does
not work in all engines, so this should be used instead if scripts are to be
run portably.
Type: <T extends object>(object: T) => T
Takes a wrapped object and returns its wrapped value. This is sometimes needed when working with values transferred from the page to the userscript.
let result
function callback (value) {
result = value // may be wrapped (page -> userscript)
}
const $callback = GMCompat.export(callback)
GMCompat.unsafeWindow.onResult($callback)
result = GMCompat.unwrap(result)
gm-compat has been tested on the following engines:
- Greasemonkey (v4.9)
- Tampermonkey for Firefox (v4.11.6117)
- Violentmonkey for Firefox (v2.12.7)
- Violentmonkey for Chrome (v2.12.7)
The following NPM scripts are available:
- build - compile the library and save to the target directory
- build:doc - generate the README's TOC (table of contents)
- build:release - compile the library for release and save to the target directory
- clean - remove the target directory and its contents
- rebuild - clean the target directory and recompile the library
- gm4-polyfill - a polyfill for the GM4 API for GM3-compatible userscript engines
- gm-storage - an ES6 Map wrapper for the synchronous userscript storage API
- UnCommonJs - a minimum viable shim for
module.exports
1.1.0
Copyright © 2020 by chocolateboy.
This is free software; you can redistribute it and/or modify it under the terms of the Artistic License 2.0.