Having to relogin every day is a right pain -- especially since unlogged-in users have to always fill in the CAPTCHA field to run queries.
Here is a simple Greasemonkey script that logs in automatically:
// ==UserScript==
// @name StackExchange Data Explorer, auto login
// @match *://data.stackexchange.com/*/query/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js
// @require https://gist.github.com/raw/2625891/waitForKeyElements.js
// @grant GM_addStyle
// ==/UserScript==
/*- The @grant directive is needed to work around a design change introduced
in GM 1.0. It restores the sandbox.
*/
if (/^https?:\/\/data\.stackexchange\.com\/[^\/]+\/query\/.+/i.test (location.href) ) {
var loginLink = $("#hlinks-content a:contains('log in')");
if (loginLink.length) {
location.assign (loginLink[0].href);
}
}
else if (/^https?:\/\/data\.stackexchange\.com\/account\/login.+/i.test (location.href) ) {
function clickLoginBtn (jNode) {
var clickEvent = document.createEvent ('MouseEvents');
clickEvent.initEvent ('click', true, true);
jNode[0].dispatchEvent (clickEvent);
}
waitForKeyElements ("#openid_btns a.myopenid", clickLoginBtn);
/*-- Valid link selector values:
"#openid_btns a.aol"
"#openid_btns a.blogger"
"#openid_btns a.claimid"
"#openid_btns a.clickpass"
"#openid_btns a.google"
"#openid_btns a.google_profile"
"#openid_btns a.livejournal"
"#openid_btns a.myopenid"
"#openid_btns a.stackexchange"
"#openid_btns a.verisign"
"#openid_btns a.wordpress"
"#openid_btns a.yahoo"
*/
}
Notes:
- The script uses MyOpenID. For other providers, change the
waitForKeyElements selector to the appropriate value listed in the comment.
- Assumes the appropriate "remember me" options are set with your ID provider.
- To use in Chrome, load the Tampermonkey extension.