B站♥双击便捷举报/拉黑

双击网页空白区域直接模拟点击举报按钮

  1. // ==UserScript==
  2. // @name B站♥双击便捷举报/拉黑
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2.1
  5. // @description 双击网页空白区域直接模拟点击举报按钮
  6. // @author Zola
  7. // @match https://www.bilibili.com/video/*
  8. // @grant none
  9. // @license MIT
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. // 检查双击事件是否在视频区域
  16. document.addEventListener('dblclick', function(event) {
  17. var videoElement = document.querySelector('video');
  18. if (videoElement && !videoElement.contains(event.target)) {
  19. // 如果双击事件不在视频元素内,模拟点击举报按钮
  20. var complaintButton = document.querySelector('div.video-complaint.video-toolbar-right-item.dropdown-item');
  21. if (complaintButton) {
  22. complaintButton.click();
  23. } else {
  24. console.error('未找到举报按钮');
  25. }
  26. }
  27. }, false);
  28.  
  29. })();