Cookie Clicker Helper

This extension makes various Cookie Clicker functions easier.

Cookie Clicker Helper क्या है?

Cookie Clicker Helper tuba.terry द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension makes various Cookie Clicker functions easier."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Cookie Clicker Helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Make your CookieClicker gameplay more efficient!

Current features:
* Provides the total prestige you'll have if you reset.
* Gives approximate countdowns before you can buy your next buildings.
* Click the cookie to keep an eye on your progress from other tabs!

Planned features:
* Countdowns for first few building upgrades
* Selectable desktop notifications as buildings become available
* Estimated values for Frenzies from Golden/Red cookies
* Golden Cookie notifications?

Cookie Clicker Helper was born out of an experiment in learning how to write Chrome Extensions, so it's a work in progress!                    

एक्सटेंशन की मूल जानकारी

नाम Cookie Clicker Helper Cookie Clicker Helper
ID iagobhdnbhalgapgknhklgieiehcjlcn
आधिकारिक URL https://chrome.google.com/webstore/detail/cookie-clicker-helper/iagobhdnbhalgapgknhklgieiehcjlcn
विवरण This extension makes various Cookie Clicker functions easier.
फ़ाइल का आकार 20.85 KB
स्थापना संख्या 3,000
वर्तमान संस्करण 0.4.2
अंतिम अपडेट 2013-10-04
प्रकाशन तिथि 2013-10-04
रेटिंग 1.67/5 कुल 6 रेटिंग्स
डेवलपर tuba.terry
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Cookie Clicker Helper",
    "description": "This extension makes various Cookie Clicker functions easier.",
    "version": "0.4.2",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/orteil.dashnet.org\/cookieclicker\/"
            ],
            "js": [
                "cookieDataGrabber.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "windows",
        "http:\/\/orteil.dashnet.org\/cookieclicker\/"
    ],
    "browser_action": {
        "default_icon": {
            "19": "icon-19.png",
            "38": "icon-38.png"
        },
        "default_popup": "popup.html"
    }
}