哒哒伽的测试脚本

哒哒伽的第一个测试脚本,用来在油猴页面点击链接跳转新的页面打开!

当前为 2023-04-13 提交的版本,查看 最新版本

// ==UserScript==
// @name         哒哒伽的测试脚本
// @namespace    none
// @version      0.1.1
// @description  哒哒伽的第一个测试脚本,用来在油猴页面点击链接跳转新的页面打开!
// @author       哒哒伽
// @include      *://greasyfork.org/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
    var alists = document.getElementsByTagName("a");
    for (let i = 0; i < alists.length; i++) {
        alists[i].setAttribute('target', '_blank')
    }
})();