1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
javascript:(function() {
$('.plurk .text_holder').html('噗文內容');
$('.list .text_holder').html('回應內容');
$('#nav-account span').html('帳號');
$('#full_name .display_name, .plurk .name, .list .name').html('名字');
$('#full_name .nick_name').html('帳號');
$('#dash-profile .profile-info, #location_container, #relationship_container').css('display', 'none');
$('#about_me').html('自介').css('padding', 0);
$('#num_of_friends, #num_of_fans, #dash-stats-table td').html('0000');
$('#last_visit, #join_date').html('0000-00-00');
$('#karma').html('123.45');
$('#friend_holder li img, #fan_holder li img, .plurk .p_img img, #profile_pic, #nav-account img').attr('src', 'https://s.plurk.com/1b755b511aebddacc6d376e64fafaf4c.gif');
$('.award_bar div').remove();
for(let f=0; f<5; f++)
$('.award_bar').append('<div class="cmp_upload_profile_image" style="filter: brightness(0);"></div>');
$('._lch_').css('background', '#eeebf0');
})()