img_preview

微信公证号文章中,图片预览

Fra 14.07.2023. Se den seneste versjonen.

// ==UserScript==
// @name         img_preview
// @namespace    http://tampermonkey.net/
// @version      0.0.1
// @description  微信公证号文章中,图片预览
// @author       Enjoy
// @icon         https://foruda.gitee.com/avatar/1671100286067517749/4867929_enjoy_li_1671100285.png!avatar60
// @match        *://mp.weixin.qq.com/s/*
// @grant        GM_addElement
// @grant        GM_addStyle
// @grant        GM_setClipboard
// @license      GPL License
// ==/UserScript==

// 函数文档 https://www.tampermonkey.net/documentation.php#api:GM_addElement

(function () {
  'use strict';
  GM_addElement('script', {
    src: 'https://gitee.com/itlangz/humming-preview/raw/v0.0.1/lib/umd/index.js',
    type: 'text/javascript'
  });

  window.addEventListener('load',()=>{
    new Humming()
  })
})();