Wordle Helper - Hackle
Hackle shows the number of solutions left when you click the word 'Wordle'. It also blocks NYT ad trackers on Wordle.
What is Wordle Helper - Hackle?
Wordle Helper - Hackle is a Chrome extension developed by https://everythingishacked.com, and its main feature is "Hackle shows the number of solutions left when you click the word 'Wordle'. It also blocks NYT ad trackers on Wordle.".
Extension Screenshots
Download Wordle Helper - Hackle Extension CRX File
Download Wordle Helper - Hackle extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Wordle Helper - Hackle |
ID | oogeahpiahbgnhjphohomnckbidgdhhd |
Official URL | 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. |
File Size | 25.59 KB |
Installation Count | 27 |
Current Version | 0.1 |
Last Updated | 2022-03-03 |
Publish Date | 2022-03-02 |
Developer | https://everythingishacked.com |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } ] } } |