HabitRPG Dailies Count

Update HabitRPG with the number of dailies left

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         HabitRPG Dailies Count
// @namespace    https://habitrpg.com
// @version      1.0
// @description  Update HabitRPG with the number of dailies left
// @author       ShadeJackrabbit
// @match        http*://habitrpg.com/*
// @grant        none
// @require      http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js
// ==/UserScript==

var tasksLeft = $(".daily:not(.completed)").length;
document.title = "HabitRPG | Dailies left: ("+tasksLeft+")";