Friends who do QQ marketing know that there are many restrictions on adding friends in QQ, including IP restrictions, number of times, QR code restrictions, and number of people. Using software to automatically add friends will encounter various problems. Many software will simulate manual QQ numbers, and after adding a few, they will encounter Tencent rules restrictions. If we use coding, the software and coding require additional fees, and it must be used in conjunction with ADSL dialing. This cost is too high and the effect is not ideal.
Based on adding friends to QQ, I have summarized a principle that you can add friends infinitely. Note that this is not a software, it is purely a personal idea, and of course it can also be used in combination with software.
QQ space is a potential resource to use. The QQ friend field in the space can easily add friends without coding. See the screenshot below.
The implementation idea is as follows:
My idea is to simulate manual clicks by using JS to operate the DOM form. First, operate the DOM point to add the button. After pausing for a few seconds, you can click to confirm after the pop-up box comes out. If you need to verify the pop-up box, just skip it! Isn't it super simple?
var <span id="transmark"></span>already_send = Array();var actions = document.getElementsByTagName('iframe')[0].contentWindow.document.getElementsByClassName('action');function set_interval(){setTimeout(function(){for(var i =0;i<actions.length;i++){var active = true;if(active){for(var a=0;a<already_send.length;a++){if(already_send[a]==i){active = false;break;}}}if(active){already_send.push(i);try{var is_send = $(document.getElementsByTagName('iframe')[0].contentWindow.document).getElementsByClassName('action')[i].getElementsByTagName('i').length == 0;console.log(i);if(!is_send){$(document.getElementsByTagName('iframe')[0].contentWindow.document).getElementsByClassName('action')[i].getElementsByTagName('a')[0].click();setTimeout(function(){var qz-dark-button = document.getElementsByClassName('qz-dark-button');for(var j =0;j<qz-dark-button.length;j++){document.getElementsByClassName('qz-dark-button')[j].click();}set_interval();},5000); break;}}catch(e){var closetag = document.getElementsByClassName('close');for(var i =0;i<closettag.length;i++){document.getElementsByClassName('close')[i].click();}}} }},3500);}set_interval();How to use
Open the QQ space, open the QQ friends, click to find the group you are going to add, and the QQ number you want to add is on the right. At this time, press F12 to pop up the developer tool, find the console item, copy the above code into it and run it, just wait for the friend to add a message successfully.
The above is the full description of the principle of unlimited QQ friends introduced by the editor to you. I hope it will be helpful to you. If you have any questions, please leave me a message and the editor will reply to you in time. Thank you very much for your support to Wulin.com website!