油猴新标签打开

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

// ==UserScript==
// @name         油猴新标签打开
// @namespace    none
// @version      0.1.2
// @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')
    }
})();