steam.js - firefox-fix-web - Firefox extension: fix web
 (HTM) git clone git://git.codemadness.org/firefox-fix-web
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) 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:00:00 GMT;path=/";
            4         /* no age check */
            5         document.cookie = "birthtime=-3599; expires=Tue, 5 Jan 2038 00:00:00 GMT;path=/";
            6         document.cookie = "lastagecheckage=1-January-1970; expires=Tue, 5 Jan 2038 00:00:00 GMT;path=/";
            7 
            8         window.location.reload(true);
            9 }