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是由https://everythingishacked.com開發的Chrome擴展程式,該擴展的主要功能是“Hackle shows the number of solutions left when you click the word 'Wordle'. It also blocks NYT ad trackers on Wordle.”。

擴展截圖

screenshot

下載Wordle Helper - Hackle擴展crx文件

下載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 Wordle Helper - Hackle
ID oogeahpiahbgnhjphohomnckbidgdhhd
官方網址 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"
            }
        ]
    }
}