var icon = new Object();
var title = new Object();
+ var badge = new Object();
+
+ var showBadge = localStorage["show_badge"];
if (xhr.status == 200) {
var unread = parseInt(xhr.responseText);
if (unread > 0) {
- icon.path = "images/alert.png";
+
+ icon.path = "images/alert.png";
title.title = "You have %s unread articles.".replace("%s", unread);
+ badge.text = unread + "";
+ } else if (unread == -1) {
+ icon.path = "images/error.png";
+
+ var errorMsg = xhr.responseText.split(";")[1];
+
+ title.title = "Error: %s.".replace("%s", errorMsg.trim());
+ badge.text = "";
+
} else {
icon.path = "images/normal.png";
title.title = "You have no unread articles.";
+ badge.text = "";
}
localStorage["last_updated"] = d.getTime();
localStorage["last_error"] = xhr.responseText;
icon.path = "images/error.png";
- title.title = "Error (%s) while requesting article information.".replace("%s", xhr.status);
+ title.title = "Error (%s) while updating.".replace("%s", xhr.status);
}
+ if (showBadge !== "1") badge.text = "";
+
+ chrome.browserAction.setBadgeText(badge);
+
chrome.browserAction.setTitle(title);
chrome.browserAction.setIcon(icon);
chrome.tabs.create(cp);
}
- });
+ });
window.setTimeout("timeout()", 1000);
{
"name": "Tiny Tiny RSS Notifier",
"background_page": "background.html",
- "version": "0.1",
+ "version": "0.2",
"description": "This extension displays the number of unread articles in your Tiny Tiny RSS installation",
"options_page": "options.html",
"icons": { "48": "images/icon.png", "128": "images/icon.png" },
"browser_action": {
"default_icon": "images/normal.png",
"default_title": "You have no unread articles.",
- "-popup": "popup.html"
+ "popup.disabled": "popup.html"
},
"permissions": [
"tabs", "http://*/*", "https://*/*"
new Effect.Highlight(f.update_interval);
}
+ localStorage['show_badge'] = (f.show_badge.checked) ? "1" : "0";
+
var d = new Date();
localStorage["prefs_updated"] = d.getTime();
else
f.update_interval.value = '15';
+ if (localStorage['show_badge'])
+ f.show_badge.checked = localStorage['show_badge'] == "1";
+ else
+ f.show_badge.checked = true;
+
var last_updated = $('last_updated');
var d = new Date();
<input name="update_interval" size="30" value=""/>
</fieldset>
+ <fieldset>
+ <label>Show badge:</label>
+ <input name="show_badge" type="checkbox" value="1"/>
+ </fieldset>
+
<input type="submit" value="Save"/>
</form>