steam.js - firefox-fix-web - Firefox extension: fix web | |
git clone git://git.codemadness.org/firefox-fix-web | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
steam.js (413B) | |
--- | |
1 if ((document.cookie || "").match("mature_content=1") === null) { | |
2 /* show "violent" games */ | |
3 document.cookie = "mature_content=1; expires=Tue, 5 Jan 2038 00:… | |
4 /* no age check */ | |
5 document.cookie = "birthtime=-3599; expires=Tue, 5 Jan 2038 00:0… | |
6 document.cookie = "lastagecheckage=1-January-1970; expires=Tue, … | |
7 | |
8 window.location.reload(true); | |
9 } |