Greasy Fork is available in English.

菜鸟教程链接本窗口打开

让菜鸟教程的链接直接在本窗口打开

질문, 리뷰하거나, 이 스크립트를 신고하세요.
  1. // ==UserScript==
  2. // @license AGPL License
  3. // @name 菜鸟教程链接本窗口打开
  4. // @namespace Violentmonkey Scripts
  5. // @match https://www.runoob.com/*
  6. // @grant none
  7. // @version 1.0
  8. // @author n1nja88888
  9. // @description 让菜鸟教程的链接直接在本窗口打开
  10. // ==/UserScript==
  11. 'use strict'
  12. console.log('n1nja88888 creates this world!')
  13.  
  14. //获得所有的超链接
  15. let aSet = $('a')
  16. //获得所有表单
  17. let formSet = $('form')
  18. aSet.each(function(){
  19. if($(this).attr('target') === '_blank'){
  20. $(this).attr('target', '_self')
  21. }
  22. })
  23. formSet.each(function(){
  24. if($(this).attr('target') === '_blank'){
  25. $(this).attr('target', '_self')
  26. }
  27. })