- NAME
- FEATURES
- INSTALLATION
- USAGE
- DESCRIPTION
- TYPES
- EXPORTS
- DEVELOPMENT
- COMPATIBILITY
- SEE ALSO
- VERSION
- AUTHOR
- COPYRIGHT AND LICENSE
gm-storage - an ES6 Map wrapper for the synchronous userscript storage API
- implements the full Map API with some helpful extras
- no dependencies
- < 600 B minified + gzipped
- fully typed (TypeScript)
- CDN builds (UMD) - jsDelivr, unpkg
$ npm install gm-storage
// ==UserScript==
// @name My Userscript
// @include https://www.example.com/*
// @require https://unpkg.com/gm-storage@4.1.1
// @grant GM_deleteValue
// @grant GM_getValue
// @grant GM_listValues
// @grant GM_setValue
// ==/UserScript==
const store = new GMStorage()
// now access userscript storage with the ES6 Map API
store.set('alpha', 'beta') // store
store.set('foo', 'bar').set('baz', 'quux') // store
store.get('foo') // "bar"
store.get('gamma', 'default value') // "default value"
store.delete('alpha') // true
store.size // 2
// iterables
[...store.keys()] // ["foo", "baz"]
[...store.values()] // ["bar", "quux"]
Object.fromEntries(store) // { foo: "bar", baz: "quux" }
GMStorage implements an ES6 Map compatible wrapper (adapter) for the synchronous userscript storage API.
It augments the built-in API with some useful enhancements such as iterating
over values and entries, and removing all values.
It also adds some features which aren't available in the Map API, e.g.
get
takes an optional default value (the same as GM_getValue
).
The synchronous storage API is supported by most userscript engines:
- Violentmonkey
- Tampermonkey
- USI
- Greasemonkey 3
The notable exceptions are Greasemonkey 4 and FireMonkey, which have moved exclusively to the asynchronous API.
The following types are referenced in the descriptions below:
type JSONValue =
| null
| boolean
| number
| string
| JSONValue[]
| { [key: string]: JSONValue };
type Callback<K extends JSONValue, V extends JSONValue, U> = (
this: U | undefined,
value: V,
key: K,
store: GMStorage<K, V>
) => void;
interface Options {
strict?: boolean;
};
interface JSONKeyStoreOptions extends Options {
canonical?: boolean;
};
class GMStorage<K extends string = string, V extends JSONValue = JSONValue> implements Map<K, V> {}
class JSONKeyStore<K extends JSONValue = JSONValue, V extends JSONValue = JSONValue> implements Map<K, V> {}
- Aliases: GMStore, GMStorage
- Type:
GMStorage<K extends string = string, V extends JSONValue = JSONValue>(options?: Options)
import GMStore from 'gm-storage'
const store = new GMStore()
store.setAll([['foo', 'bar'], ['baz', 'quux']])
store.size // 2
Constructs a Map-compatible instance which associates keys with their
corresponding values in the userscript engine's storage. GMStorage<K, V>
instances are compatible with Map<K, V>
, where K
extends (and defaults to)
string and V
extends (and defaults to) the type of JSON-serializable values.
The GMStorage
constructor can take the following options:
- Type:
boolean
- Default:
true
// don't need GM_deleteValue or GM_listValues
const store = new GMStorage({ strict: false })
store.set('foo', 'bar')
store.get('foo') // "bar"
In order to use all GMStorage methods, the following GM_*
functions must be
defined (i.e. granted):
GM_deleteValue
GM_getValue
GM_listValues
GM_setValue
If this option is true (as it is by default), the existence of these functions is checked when the store is created. If any of the functions are missing, an exception is thrown.
If the option is false, they are not checked, and access to GM_*
functions
required by unused storage methods need not be granted.
- Alias: JSONKeyStorage
- Type:
JSONKeyStore<K extends JSONValue = JSONValue, V extends JSONValue = JSONValue>(options?: JSONKeyStoreOptions)
import { JSONKeyStore } from 'gm-storage'
const store = new JSONKeyStore()
store.set(['foo'], 'bar')
store.set({ foo: 'bar' }, ['baz', 'quux'])
store.get(['foo']) // "bar"
store.get({ foo: 'bar' }) // ["baz", "quux"]
Array.from(store.keys()) // [["foo"], { foo: "bar" }]
This class is an extension of the GMStorage class which supports the automatic conversion of keys to/from JSON. Apart from the options listed below, its behavior, methods and properties are the same as GMStorage.
The JSONKeyStore
constructor can take the following options, in addition to
those supported by GMStorage:
- Type:
boolean
- Default:
true
const store = new JSONKeyStore({ canonical: true })
store.set({ foo: 'bar', baz: 'quux' }, 1)
store.set({ baz: 'quux', foo: 'bar' }, 2)
store.size // 1
store.get({ foo: 'bar', baz: 'quux' }) // 2
store.get({ baz: 'quux', foo: 'bar' }) // 2
const store = new JSONKeyStore({ canonical: false })
store.set({ foo: 'bar', baz: 'quux' }, 1)
store.set({ baz: 'quux', foo: 'bar' }, 2)
store.size // 2
store.get({ foo: 'bar', baz: 'quux' }) // 1
store.get({ baz: 'quux', foo: 'bar' }) // 2
When converting JSON values to strings, JSONKeyStore uses a canonical
representation which ensures that values which contain (nested) objects have
the same JSON representation regardless of their order of construction (by
sorting the keys). This produces the expected results, but may have a
performance impact (e.g. on my system, it's around 6x slower than vanilla
JSON.stringify
). In cases where this normalization isn't needed — e.g. where
the keys are known to not contain objects (with multiple keys), or where the
order is stable, or significant — it can be disabled by setting this option to
false.
- Type:
clear(): void
- Requires:
GM_deleteValue
,GM_listValues
const store = new GMStorage().setAll([['foo', 'bar'], ['baz', 'quux']])
store.size // 2
store.clear()
store.size // 0
Remove all entries from the store.
- Type:
delete(key: K): boolean
- Requires:
GM_deleteValue
,GM_getValue
const store = new GMStorage().setAll([['foo', 'bar'], ['baz', 'quux']])
store.size // 2
store.delete('nope') // false
store.delete('foo') // true
store.has('foo') // false
store.size // 1
Delete the value with the specified key from the store. Returns true if the value existed, false otherwise.
- Type:
entries(): Generator<[K, V]>
- Requires:
GM_getValue
,GM_listValues
- Alias:
Symbol.iterator
for (const [key, value] of store.entries()) {
console.log([key, value])
}
Returns an iterable which yields each key/value pair from the store.
- Type:
forEach<U>(callback: Callback<K, V, U>, thisArg: U): void
forEach(callback: Callback<K, V, undefined>): void
- Requires:
GM_getValue
,GM_listValues
store.forEach((value, key) => {
console.log([key, value])
})
Iterates over each key/value pair in the store, passing them to the callback,
along with the store itself, and binding the optional second argument to this
inside the callback.
- Type:
get<D>(key: K, defaultValue: D): V | D
get(key: K): V | undefined
- Requires:
GM_getValue
const maybeAge = store.get('age')
const age = store.get('age', 42)
Returns the value corresponding to the supplied key, or the default value (which is undefined by default) if it doesn't exist.
- Type:
has(key: K): boolean
- Requires:
GM_getValue
if (!store.has(key)) {
console.log('not found')
}
Returns true if a value with the supplied key exists in the store, false otherwise.
- Type:
keys(): Generator<K>
- Requires:
GM_listValues
for (const key of store.keys()) {
console.log(key)
}
Returns an iterable collection of the store's keys.
Note that, for compatibility with Map#keys
, the return value is iterable but
is not an array.
- Type:
set(key: K, value: V): this
- Requires:
GM_setValue
store.set('foo', 'bar')
.set('baz', 'quux')
Add a value to the store under the supplied key. Returns the store for chaining.
- Type:
setAll(values?: Iterable<[K, V]>): this
- Requires:
GM_setValue
store.setAll([['foo', 'bar'], ['baz', 'quux']])
store.has('foo') // true
store.get('baz') // "quux"
Add entries (key/value pairs) to the store. Returns the store for chaining.
- Type:
values(): Generator<V>
- Requires:
GM_getValue
,GM_listValues
for (const value of store.values()) {
console.log(value)
}
Returns an iterable collection of the store's values.
- Type:
number
- Requires:
GM_listValues
console.log(store.size)
Returns the number of values in the store.
An alias for entries
:
for (const [key, value] of store) {
console.log([key, value])
}
The following NPM scripts are available:
- build - compile the library for testing 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
- test - recompile the library and run the test suite
- test:run - run the test suite
- typecheck - sanity check the library's type definitions
- any userscript engine with support for the Greasemonkey 3 storage API
- any browser with ES6 support
- the
GM_*
functions are accessed viaglobalThis
, which may need to be polyfilled in older browsers
- Keyv - simple key-value storage with support for multiple backends
4.1.1
Copyright © 2020-2025 by chocolateboy.
This is free software; you can redistribute it and/or modify it under the terms of the MIT license.