Wordle Helper - Hackle

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

Wat is Wordle Helper - Hackle?

Wordle Helper - Hackle is een Chrome-extensie ontwikkeld door https://everythingishacked.com, en de belangrijkste functie is "Hackle shows the number of solutions left when you click the word 'Wordle'. It also blocks NYT ad trackers on Wordle.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Wordle Helper - Hackle

Download Wordle Helper - Hackle-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Wordle Helper - Hackle Wordle Helper - Hackle
ID oogeahpiahbgnhjphohomnckbidgdhhd
Officiële URL https://chromewebstore.google.com/detail/wordle-helper-hackle/oogeahpiahbgnhjphohomnckbidgdhhd
Beschrijving Hackle shows the number of solutions left when you click the word 'Wordle'. It also blocks NYT ad trackers on Wordle.
Bestandsgrootte 25.59 KB
Aantal Installaties 27
Huidige Versie 0.1
Laatst Bijgewerkt 2022-03-03
Publicatiedatum 2022-03-02
Ontwikkelaar https://everythingishacked.com
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
            }
        ]
    }
}