GM_config_lz-string

ConfigLzString/Refactor GM_config, this version uses lz-string to access data for a Library script

Questo script non dovrebbe essere installato direttamente. È una libreria per altri script da includere con la chiave // @require https://update.greasyfork.org/scripts/372760/634230/GM_config_lz-string.js

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

Autore
avan
Versione
0.6
Creato il
01/10/2018
Aggiornato il
05/10/2018
Dimensione
11 KB
Licenza
MIT

GM_config_lz-string

Refactor GM_config, this version uses lz-string to access data.

The original author was sizzlemctwizzle.


  • To include ConfigLzString(GM_config_lz-string) in a script use an @require
// ==UserScript==
// @name          Script Name
// @namespace     Script Namespace
// @require       https://cdnjs.cloudflare.com/ajax/libs/lz-string/1.4.4/lz-string.min.js
// @require       https://openuserjs.org/src/libs/sizzle/GM_config.js
// @require      https://greasyfork.org/scripts/372760-gm-config-lz-string/code/GM_config_lz-string.js
// @grant         GM_getValue
// @grant         GM_setValue
// ==/UserScript==

Rename GM_configStruct to ConfigLzString

const gmc = new ConfigLzString({
    'id': 'ID',
    'title': 'TITLE',
    'fields': {...},
    'events': {...},
    'css': '...',
    'src':'...', //Load the js source file in the head block of iframe
});

For the original version of GM_config usage information, read the wiki.