Cookie clicker tools

Cookie clicker tools (visual)

目前為 2017-02-25 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Cookie clicker tools
// @namespace    orteil.dashnet.org
// @version      1.4
// @description  Cookie clicker tools (visual)
// @author       Anton
// @match        http://orteil.dashnet.org/cookieclicker/*
// @require      http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// ==/UserScript==

(function() {
    'use strict';
    if (console) console.log('Cookies?');
    var t = setInterval(function() {
        var icons = document.querySelectorAll('.icon:not([id^=product])');
        var x = icons && icons.length > 0 ? icons[0].offsetParent : null;
        if (x !== null) {
            var $tooltip = jQuery(x);
            var price = $tooltip.find('span.price').text();
            if (price) {
                var priceNum = parseFloat(price);
                var mult = 1;
                if (price.indexOf('billion') > -1) mult = 1E9;
                else if (price.indexOf('million') > -1) mult = 1E6;
                var totalPrice = priceNum * mult;
                if (console) console.log(totalPrice);
            }
        }
    }, 500);
})();