Wordle Helper - Hackle

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

Was ist Wordle Helper - Hackle?

Wordle Helper - Hackle ist eine Chrome-Erweiterung, die von https://everythingishacked.com entwickelt wurde, und ihr Hauptmerkmal ist "Hackle shows the number of solutions left when you click the word 'Wordle'. It also blocks NYT ad trackers on Wordle.".

Erweiterungsscreenshots

screenshot

Wordle Helper - Hackle-Erweiterungs-CRX-Datei herunterladen

Laden Sie Wordle Helper - Hackle-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Wordle Helper - Hackle Wordle Helper - Hackle
ID oogeahpiahbgnhjphohomnckbidgdhhd
Offizielle URL https://chromewebstore.google.com/detail/wordle-helper-hackle/oogeahpiahbgnhjphohomnckbidgdhhd
Beschreibung Hackle shows the number of solutions left when you click the word 'Wordle'. It also blocks NYT ad trackers on Wordle.
Dateigröße 25.59 KB
Installationsanzahl 27
Aktuelle Version 0.1
Letztes Update 2022-03-03
Veröffentlichungsdatum 2022-03-02
Entwickler https://everythingishacked.com
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
            }
        ]
    }
}