Wordle Helper - Hackle

Hackle shows the number of solutions left when you click the word 'Wordle'. It also blocks NYT ad trackers on Wordle.

Τι είναι το Wordle Helper - Hackle;

Το Wordle Helper - Hackle είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://everythingishacked.com, και η κύρια λειτουργία του είναι "Hackle shows the number of solutions left when you click the word 'Wordle'. It also blocks NYT ad trackers on Wordle.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Wordle Helper - Hackle

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

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

                        Hackle shows the number of solutions left when you click the word 'Wordle' and logs remaining words to the console. It also blocks the New York Times ad trackers added to Wordle.                    

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

Όνομα Wordle Helper - Hackle Wordle Helper - Hackle
ID oogeahpiahbgnhjphohomnckbidgdhhd
Επίσημο URL https://chromewebstore.google.com/detail/wordle-helper-hackle/oogeahpiahbgnhjphohomnckbidgdhhd
Περιγραφή Hackle shows the number of solutions left when you click the word 'Wordle'. It also blocks NYT ad trackers on Wordle.
Μέγεθος Αρχείου 25.59 KB
Αριθμός Εγκαταστάσεων 27
Τρέχουσα Έκδοση 0.1
Τελευταία Ενημέρωση 2022-03-03
Ημερομηνία Δημοσίευσης 2022-03-02
Προγραμματιστής https://everythingishacked.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wordle Helper - Hackle",
    "description": "Hackle shows the number of solutions left when you click the word 'Wordle'. It also blocks NYT ad trackers on Wordle.",
    "version": "0.1",
    "manifest_version": 3,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.nytimes.com\/games\/wordle\/*"
            ],
            "js": [
                "count.js"
            ]
        }
    ],
    "permissions": [
        "declarativeNetRequest"
    ],
    "action": [],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset",
                "enabled": true,
                "path": "rule.json"
            }
        ]
    }
}