获取微信公众号文章封面

获取微信公众号文章封面的油猴脚本

  1. // ==UserScript==
  2. // @name 获取微信公众号文章封面
  3. // @name:en Wechat media platform article cover
  4. // @namespace https://penghh.fun/
  5. // @version 0.1
  6. // @description 获取微信公众号文章封面的油猴脚本
  7. // @description:en A script to get wechat media platform article cover
  8. // @author penghh
  9. // @match https://mp.weixin.qq.com/*
  10. // @icon https://mp.weixin.qq.com/favicon.ico
  11. // @grant GM_registerMenuCommand
  12. // @license MIT license
  13. // ==/UserScript==
  14.  
  15. (function() {
  16. 'use strict';
  17. // Your code here...
  18. window.open(document.querySelector('meta[property="og:image"]').content);
  19. //GM_registerMenuCommand("获取封面", window.open(document.querySelector('meta[property="og:image"]').content), "c");
  20. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址