H2P: utils

utils

이 스크립트는 직접 설치해서 쓰는 게 아닙니다. 다른 스크립트가 메타 명령 // @require https://update.greasyfork.org/scripts/411278/847435/H2P%3A%20utils.js(으)로 포함하여 쓰는 라이브러리입니다.

질문, 리뷰하거나, 이 스크립트를 신고하세요.
개발자
Greasy丶H2P
버전
0.1.1
생성
2020-09-13
갱신
2020-09-13
라이선스
없음

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);