Cookie Clicker Helper

This extension makes various Cookie Clicker functions easier.

ما هو Cookie Clicker Helper؟

Cookie Clicker Helper هو إضافة Chrome تم تطويرها بواسطة tuba.terry، والميزة الرئيسية لها هي "This extension makes various Cookie Clicker functions easier.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Cookie Clicker Helper

قم بتنزيل ملفات الامتداد Cookie Clicker Helper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
    }
}