dban_get_allUser_under_group

try to take over the world!

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         dban_get_allUser_under_group
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://www.douban.com/group/crazymovie/*
// @grant        none
// ==/UserScript==

(function() {
    function openall(){
        alert('afs')
    }
    'use strict';
    console.log('version')


    $('.nav-logo').append('<button id="sad">click me open all tag</button>')
    var aList = []

    $('#sad').click(function(){


        for (var i=0;i<$('.member-list ul li a').length;i++){
            aList.push($('.member-list ul li a')[i].href)
            

    }
        let setlist = new Set(aList)
        console.log(setlist)
        let flist = Array.from(setlist)
        for(var j=0;j<flist.length;j++){
            window.open(flist[j], "_blank")

        }


    })





    // Your code here...
})();