Wordle Helper - Hackle

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

Qu'est-ce que Wordle Helper - Hackle ?

Wordle Helper - Hackle est une extension Chrome développée par https://everythingishacked.com, et sa fonction principale est "Hackle shows the number of solutions left when you click the word 'Wordle'. It also blocks NYT ad trackers on Wordle.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Wordle Helper - Hackle

Téléchargez les fichiers d'extension Wordle Helper - Hackle au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Wordle Helper - Hackle Wordle Helper - Hackle
ID oogeahpiahbgnhjphohomnckbidgdhhd
URL Officiel https://chromewebstore.google.com/detail/wordle-helper-hackle/oogeahpiahbgnhjphohomnckbidgdhhd
Description Hackle shows the number of solutions left when you click the word 'Wordle'. It also blocks NYT ad trackers on Wordle.
Taille du Fichier 25.59 KB
Nombre d'Installations 27
Version Actuelle 0.1
Dernière Mise à Jour 2022-03-03
Date de Publication 2022-03-02
Développeur https://everythingishacked.com
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
            }
        ]
    }
}