Classes for your scripts
Tính đến
Script này sẽ không được không được cài đặt trực tiếp. Nó là một thư viện cho các script khác để bao gồm các chỉ thị meta
// @require https://update.greasyfork.org/scripts/389765/1082812/CommonUtils.js
// @require https://greasyfork.org/scripts/389765-common-utils/code/CommonUtils.js?version=XXX
See last available version on the GreasyFork homepage
let CacheInstance = new SimpleCache();
let result = null;
if (CacheInstance.has('key')) {
result = CacheInstance.get('key');
} else {
result = await $.ajax('url');
CacheInstance.set('key', result);
}
let SettingsInstance = new Settings('script name', {'default':'settings'});
With jQuery:
$(window).on('beforeunload', () => SettingsInstance.save() );
Tools.copyToClipboard('some text')
Author homepage: http://anton.shevchuk.name/
Script homepage: https://github.com/AntonShevchuk/common.utils
GreasyFork: https://greasyfork.org/uk/scripts/389765-common-utils