Project Euler Hide Solved By Number

if you feel 'solved by' count is affecting your ability and desire to solve a Project Euler question

当前为 2014-10-11 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Project Euler Hide Solved By Number
  3. // @namespace http://ahmetkun.com/
  4. // @version 0.1
  5. // @description if you feel 'solved by' count is affecting your ability and desire to solve a Project Euler question
  6. // @author Ahmet Kun
  7. // @match https://projecteuler.net/problems
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. var counts = document.querySelectorAll('#problems_table > tbody > tr > td:nth-child(3)');
  12. for(var i=0; i<counts.length; i++) {
  13. counts[i].style.visibility = 'hidden';
  14. }