西瓜视频按F键全屏

try to take over the world!

  1. // ==UserScript==
  2. // @name 西瓜视频按F键全屏
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.4
  5. // @description try to take over the world!
  6. // @author You
  7. // @match *://*.ixigua.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. document.addEventListener('keydown', function(event) {
  15. if (event.code === 'KeyF') {
  16. var elements = document.querySelectorAll('[aria-label="全屏"],[aria-label="退出全屏"]');
  17. if (elements.length > 0) {
  18. elements[0].click();
  19. }
  20. }
  21. });
  22. })();

QingJ © 2025

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