Greasy Fork is available in English.

H2P: utils

utils

Tento skript by neměl být instalován přímo. Jedná se o knihovnu, kterou by měly jiné skripty využívat pomocí meta příkazu // @require https://update.greasyfork.org/scripts/411278/847435/H2P%3A%20utils.js

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

Autor
Greasy丶H2P
Verze
0.1.1
Vytvořeno
13. 09. 2020
Aktualizováno
13. 09. 2020
Size
3,1 KB
Licence
neuvedeno

1. 引入脚本

根据 greasyFork 指引,到脚本开头 require 本脚本

2. 传入 $util

  (($util, $H2P) => {
    ...
  })($util, $H2P)

3. API

  // 键盘点击事件 code
  $util.keyCode.[a-z];

  // localStorage 操作
  $util.LS.init(itemKey = '', itemPre = {});
  $util.LS.set(itemKey = '', item = {});
  $util.LS.get(itemKey = '');
  $util.LS.remove(itemKey = '');

  // 根据毫秒获取 小时、分钟、秒
  // 返回 { h: '', m: '', s: '' },通过解耦获取
  $util.HMS(time = 0);

  // Date 格式化
  new Date().$formatTime(); // format time: yyyy-MM-dd hh-mm-ss
  new Date().$formatDate(); // format date: yyyy-MM-dd

  // document.querySelector
  $H2P(xpath);
  // document.querySelectorAll
  $H2P(xpath, false);