Uncanny Cookie Clicker

A simple helper extension for Cookie Clicker players.

Τι είναι το Uncanny Cookie Clicker;

Το Uncanny Cookie Clicker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Naoto Yokoyama, και η κύρια λειτουργία του είναι "A simple helper extension for Cookie Clicker players.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Uncanny Cookie Clicker

Λήψη αρχείων επέκτασης Uncanny Cookie Clicker σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        GitHub: https://github.com/builtinnya/UncannyCookieClicker

Features

- Auto-click the big cookie at given interval

- Auto-pop Wrinklers (since v0.5.0)

- Auto-click a golden cookie when it appears (avoiding red cookies if you want since v0.2.0)

- Notify you when a golden cookie appears

- Auto-buy upgrades when available (since v0.1.0)

- Notify you when new upgrades become available (since v0.1.0)

- Auto-buy buildings when available (since v0.3.0)
  - You can select which buildings to buy (since v0.4.0)

- Speed up the game (since v0.3.0)

- Auto-click and notify when a season popup such as reindeer appears (since v.0.3.1)

Bug fixes

- Support 2.048 (2.047 beta) or above with multi-language feature (v0.6.0)

- Fixed a bug that fails to watch golden cookies (v0.2.1)
  - This bug was introduced because Cookie Clicker changed its initialization mechanism.

- Fixed a bug that prevents the extension from working in some environment (v0.4.0)
  - Reintroduced in v0.4.1 (fixed in v0.4.2)

- Fixed a bug that prevents the extension from buying upgrades (v0.5.1)

- Fixed a bug that the extension doesn't auto-click golden cookies since v2.001 (v0.5.2)

This extension works on:
    (https since v0.5.4) Cookie Clicker: https://orteil.dashnet.org/cookieclicker/
    (since v0.1.0, https since v0.5.4) Cookie Clicker Beta: https://orteil.dashnet.org/cookieclicker/beta/

Please send me a feedback if you find any problems or have any feature requests.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Uncanny Cookie Clicker Uncanny Cookie Clicker
ID mmmdenlpgbgmeofmdkhimecmkcgabgno
Επίσημο URL https://chromewebstore.google.com/detail/uncanny-cookie-clicker/mmmdenlpgbgmeofmdkhimecmkcgabgno
Περιγραφή A simple helper extension for Cookie Clicker players.
Μέγεθος Αρχείου 241 KB
Αριθμός Εγκαταστάσεων 189,020
Τρέχουσα Έκδοση 0.6.1
Τελευταία Ενημέρωση 2023-03-14
Ημερομηνία Δημοσίευσης 2016-08-19
Αξιολόγηση 3.82/5 Συνολικά 965 Αξιολογήσεις
Προγραμματιστής Naoto Yokoyama
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/builtinnya/UncannyCookieClicker
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Uncanny Cookie Clicker",
    "version": "0.6.1",
    "description": "A simple helper extension for Cookie Clicker players.",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_title": "Uncanny Cookie Clicker - click for details",
        "default_popup": "html\/popup.html"
    },
    "author": "Naoto Yokoyama",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/orteil.dashnet.org\/cookieclicker\/",
                "http:\/\/orteil.dashnet.org\/cookieclicker\/beta\/",
                "https:\/\/orteil.dashnet.org\/cookieclicker\/",
                "https:\/\/orteil.dashnet.org\/cookieclicker\/beta\/"
            ],
            "js": [
                "js\/lib\/underscore.js",
                "js\/lib\/watch.js",
                "js\/modules\/config.js",
                "js\/modules\/storage.js",
                "js\/modules\/notifications.js",
                "js\/modules\/backgroundHandlers.js",
                "js\/modules\/util\/messaging.js",
                "js\/modules\/util\/pageMessagingCommon.js",
                "js\/modules\/util\/pageMessagingProxy.js",
                "js\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "notifications"
    ],
    "host_permissions": [
        "http:\/\/orteil.dashnet.org\/cookieclicker\/",
        "http:\/\/orteil.dashnet.org\/cookieclicker\/beta\/",
        "https:\/\/orteil.dashnet.org\/cookieclicker\/",
        "https:\/\/orteil.dashnet.org\/cookieclicker\/beta\/"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/js\/*",
                "\/html\/*",
                "\/css\/*",
                "\/images\/*"
            ],
            "matches": [
                "http:\/\/orteil.dashnet.org\/*",
                "https:\/\/orteil.dashnet.org\/*"
            ]
        }
    ]
}