Greasy Fork is available in English.

Discussions » Development

我图网免登录

§
Posted: 12.04.2024

// ==UserScript==
// @name 我图网免登录
// @namespace http://tampermonkey.net/
// @version 2024-04-11
// @description try to take over the world!
// @author You
// @match https://weili.ooopic.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=ooopic.com
// @grant none
// ==/UserScript==

(function() {
'use strict';
$("body").ready(()=>{
layer.closeAll();
$(".unlogin-block").remove();
$.cookieSet('web:activity_pop_tub_send_coupon_20220906_pop_done',1);
$.cookieSet('web:activity_pop_norecharge_user_conversion_done',1);
$("body").append("

");
$('.js_ctr_whole_page_activity_pop').css("display","block");
});
// Your code here...
})();

Post reply

Sign in to post a reply.