Cookie Clicker Helper

This extension makes various Cookie Clicker functions easier.

Cookie Clicker Helper là gì?

Cookie Clicker Helper là một tiện ích mở rộng Chrome được phát triển bởi tuba.terry, và tính năng chính của nó là "This extension makes various Cookie Clicker functions easier.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Cookie Clicker Helper

Tải xuống các tệp mở rộng Cookie Clicker Helper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Cookie Clicker Helper Cookie Clicker Helper
ID iagobhdnbhalgapgknhklgieiehcjlcn
URL Chính Thức https://chrome.google.com/webstore/detail/cookie-clicker-helper/iagobhdnbhalgapgknhklgieiehcjlcn
Mô tả This extension makes various Cookie Clicker functions easier.
Kích Thước Tệp 20.85 KB
Số Lần Cài Đặt 3,000
Phiên Bản Hiện Tại 0.4.2
Cập Nhật Lần Cuối 2013-10-04
Ngày Phát Hành 2013-10-04
Đánh Giá 1.67/5 Tổng số 6 Đánh Giá
Nhà Phát Triển tuba.terry
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}