您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
try to take over the world!
- // ==UserScript==
- // @name Mfw
- // @namespace http://tampermonkey.net/
- // @version 0.1
- // @description try to take over the world!
- // @author You
- // @match http://www.mafengwo.cn/search/*
- // @grant none
- // ==/UserScript==
- (function() {
- function openall(){
- alert('afs')
- }
- 'use strict';
- console.log('version')
- $('.s-head-logo').append('<button id="sad">click me open all tag</button>')
- var aList = []
- console.log($('.att-list ul li div .flt1 a').length)
- for (var i=0;i<$('.att-list ul li div .flt1 a').length;i++){
- aList.push($('.att-list ul li div .flt1 a')[i].href)
- }
- console.log(aList)
- $('#sad').click(function(){
- for(i in aList){
- window.open(aList[i], "_blank")
- }
- })
- // Your code here...
- })();