Cookie Clicker Helper

This extension makes various Cookie Clicker functions easier.

Cookie Clicker Helperとは何ですか?

Cookie Clicker Helperはtuba.terryによって開発されたChromeの拡張機能で、その主な機能は「This extension makes various Cookie Clicker functions easier.」です。

拡張機能のスクリーンショット

screenshot

Cookie Clicker Helper拡張機能のCRXファイルをダウンロード

Cookie Clicker Helper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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"
    }
}