Hiding artists names on WinCustomize.com

Tuesday, September 11, 2012 by ZubaZ | Discussion: WinCustomize Talk

The other day, reading a thread about ratings and what-not, I wished I didn't know who an artist was for a skin . .so my opinion wouldn't be colored by that.

I asked kryo to help me out and have a greasemonkey script that does exactly that.

It hide the author's name on WinCustomize (or most of it).  The author link is still there if you want to know . . or you can turn off the script.

It was for personal use . . but someone else may find it useful too.

 

Install greasemonkey for Firefox or tampermonky for Chrome.  IE users are on their own.


Create a text file with the below code.

Code: javascript
  1. // ==UserScript==
  2. // @name Hide skin author names
  3. // @namespace https://forums.stardock.com
  4. // @include https://www.wincustomize.com/*
  5. // @include http://www.guichamps.com/*
  6. // @version 1
  7. // @grant none
  8. // ==/UserScript==
  9. var head = document.getElementsByTagName('head')[0];
  10. function addCSS(css) {
  11. var style = document.createElement('style');
  12. style.type = 'text/css';
  13. style.innerHTML = css;
  14. head.appendChild(style);
  15. }
  16. addCSS("table.skinprofile tbody tr td h3 a { opacity:0.0 !important; }");
  17. addCSS("div.explore_listing div.info_pane h2 a { opacity:0.0 !important; }");
  18. addCSS("div.body h5 a { opacity:0.0 !important; }");
  19. addCSS("div.info h5 a:nth-child(1) { opacity:0.0 !important; }");
  20. addCSS("div.info h5 { opacity:0.0 !important; }");
  21. addCSS("table.skinpreview tbody tr td h2:nth-child(3) a { opacity:0.0 !important; }");
  22. addCSS("div.meta p a { opacity:0.0 !important; }");

 Save it as [filename].user.js


Add the script and reload the page.  The script runs at the end . . so if you look right away, you may see author's names.  Don't peek unless you want to peek . . . and then ask yourself why you installed the script.

If you see an author's name somewhere on the page . . edit the script to hide it.  (I might be able to help if you post the url and screenshot here.

Snowman
Reply #1 Tuesday, September 11, 2012 1:43 PM

Here's another and more effective solution:

Everyone who let their rating be tainted by who the artist is should be lined up and shot.

Might not be as popular, and it would be a damn long line - but it'd work.

Snowman
Reply #2 Tuesday, September 11, 2012 1:45 PM

PS.: Now that you guy's got extra time to code 'valuable things' like this, how about fixing up the site as well?

DrJBHL
Reply #3 Tuesday, September 11, 2012 1:46 PM

Hey... while you're writing code, how about fixing the tools? 

 

*ok. I definitely took a crazy pill. I just asked Zubaz to write code.

neone6
Reply #4 Tuesday, September 11, 2012 1:55 PM

Snowman
PS.: Now that you guy's got extra time to code 'valuable things' like this, how about fixing up the site as well?

Edit: Now might be a good time to ask... Does this mean "I totally agree" or not ?

DaveRI
Reply #5 Tuesday, September 11, 2012 2:04 PM

Cool idea though Zubaz

ZubaZ
Reply #6 Tuesday, September 11, 2012 2:19 PM

Snowman
PS.: Now that you guy's got extra time to code 'valuable things' like this, how about fixing up the site as well?
This wasn't a work project.  If it was it would be done much better and part of the site.  The WebDevs are working on other, more important things. 

DrJBHL
*ok. I definitely took a crazy pill. I just asked Zubaz to write code.
You have no idea how many times the dam thing wouldn't work because the stupid website was being stupid . . or there might have been a typo or two.

 

DaveRI
Cool idea though Zubaz
Thnaks.

 

 

Snowman
Reply #7 Tuesday, September 11, 2012 3:24 PM

Zubaz
The WebDevs are working on other, more important things.

Nothing has changed on that part, I see. No big surprise there.

The operation/function of Wincustomize (and it's admin site) is still at the bottom of the to-do list.

starkers
Reply #8 Tuesday, September 11, 2012 3:55 PM

Zubaz
. . or there might have been a typo or two.

Or three, or four.... maybe even five or six tyops.

Nevre mind mate, I fkuc up all teh time.

Jafo
Reply #9 Tuesday, September 11, 2012 9:56 PM

Hands up all those who can see an issue with the world's 'greatest' speller writing code....

 

....and he said he had trouble getting it to work.

 

 

 

 

Can't imagine why...

RedneckDude
Reply #10 Tuesday, September 11, 2012 10:04 PM

Hands up all those who can see an issue with the world's 'greatest' speller writing code....

 

 

 

 

ZubaZ
Reply #11 Tuesday, September 11, 2012 11:04 PM

I only misspell halh the time...the other half I mis-type.

Jafo
Reply #12 Tuesday, September 11, 2012 11:13 PM

I only misspell halh the time...the other half I mis-type.

Like....'it ONLY rains twice a year....once for 5 months and once for 7'...

Rosco_P
Reply #13 Wednesday, September 12, 2012 9:06 AM

Like....'it ONLY rains twice a year....once for 5 months and once for 7'...

The rain in Spain stays mainly in the planes.

Please login to comment and/or vote for this skin.

Welcome Guest! Please take the time to register with us.
There are many great features available to you once you register, including:

  • Richer content, access to many features that are disabled for guests like commenting on the forums and downloading skins.
  • Access to a great community, with a massive database of many, many areas of interest.
  • Access to contests & subscription offers like exclusive emails.
  • It's simple, and FREE!



web-wc01