Wordle Helper - Hackle
Hackle shows the number of solutions left when you click the word 'Wordle'. It also blocks NYT ad trackers on Wordle.
Hvad er Wordle Helper - Hackle?
Wordle Helper - Hackle er en Chrome-udvidelse udviklet af https://everythingishacked.com, og dens hovedfunktion er "Hackle shows the number of solutions left when you click the word 'Wordle'. It also blocks NYT ad trackers on Wordle.".
Udvidelsesskærmbilleder
Download Wordle Helper - Hackle-udvidelses-CRX-fil
Download Wordle Helper - Hackle-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Wordle Helper - Hackle |
ID | oogeahpiahbgnhjphohomnckbidgdhhd |
Officiel URL | https://chromewebstore.google.com/detail/wordle-helper-hackle/oogeahpiahbgnhjphohomnckbidgdhhd |
Beskrivelse | Hackle shows the number of solutions left when you click the word 'Wordle'. It also blocks NYT ad trackers on Wordle. |
Filstørrelse | 25.59 KB |
Antal Installationer | 27 |
Nuværende Version | 0.1 |
Senest Opdateret | 2022-03-03 |
Udgivelsesdato | 2022-03-02 |
Udvikler | https://everythingishacked.com |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" } ] } } |