Wordle Helper - Hackle
Hackle shows the number of solutions left when you click the word 'Wordle'. It also blocks NYT ad trackers on Wordle.
Что такое Wordle Helper - Hackle?
Wordle Helper - Hackle - это расширение Chrome, разработанное https://everythingishacked.com, и его основная функция - "Hackle shows the number of solutions left when you click the word 'Wordle'. It also blocks NYT ad trackers on Wordle.".
Снимки экрана расширения
Скачать файл CRX расширения Wordle Helper - Hackle
Скачайте файлы расширений Wordle Helper - Hackle в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | Wordle Helper - Hackle |
ID | oogeahpiahbgnhjphohomnckbidgdhhd |
Официальный URL | https://chromewebstore.google.com/detail/wordle-helper-hackle/oogeahpiahbgnhjphohomnckbidgdhhd |
Описание | Hackle shows the number of solutions left when you click the word 'Wordle'. It also blocks NYT ad trackers on Wordle. |
Размер файла | 25.59 KB |
Количество установок | 27 |
Текущая Версия | 0.1 |
Последнее Обновление | 2022-03-03 |
Дата публикации | 2022-03-02 |
Разработчик | https://everythingishacked.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | 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" } ] } } |