-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.js
52 lines (46 loc) · 1.76 KB
/
options.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/* Copyright (c) 2011 Srikanth Raju, http://srikanthraju.in/scrobbleware
* Released under MIT license. See LICENSE file for more information */
function save_func() {
localStorage.username = document.getElementById("username").value;
localStorage.password = document.getElementById("password").value;
chrome.extension.getBackgroundPage().window.location.reload();
}
function clear_func() {
localStorage.clear();
chrome.extension.getBackgroundPage().window.location.reload();
document.getElementById("username").removeAttribute("disabled");
document.getElementById("password").removeAttribute("disabled");
document.getElementById("submit").removeAttribute("disabled");
document.getElementById("status").style.display='none';
}
function update( msg ) {
document.getElementById("status").innerHTML=msg;
}
function load() {
if (localStorage.username != null) {
update("User set to " + localStorage.username + ". "
+ ( localStorage.auth_success == 1 ? "Auth success. Hit Clear to unregister" : "Auth failed. Try Again" ) );
}
if( localStorage.auth_success == 1 )
{
document.getElementById("username").setAttribute("disabled","disabled");
document.getElementById("password").setAttribute("disabled","disabled");
document.getElementById("submit").setAttribute("disabled","disabled");
document.getElementById("status").style.display='';
}
else if( localStorage.auth_success == 2 )
{
localStorage.clear();
document.getElementById("status").style.display='';
}
else
{
document.getElementById("status").style.display='none';
}
}
chrome.extension.onRequest.addListener(
function(request, sender, sendResponse) {
load();
sendResponse({});
}
);