Higher or Lower

Play HigherOrLowerGame without losing !

Higher or Lower là gì?

Higher or Lower là một tiện ích mở rộng Chrome được phát triển bởi Elliot Lintz, và tính năng chính của nó là "Play HigherOrLowerGame without losing !".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Higher or Lower

Tải xuống các tệp mở rộng Higher or Lower dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        What is higher Or Lower I Know ?
Higher Or Lower I Know is a non official extension for the game www.higherlowergame.com.
It enable you to beat your highscore without any effort.

How do I use the web extension ?
You simply have to go to 'The Higher Lower Game' website, start a game, click on the extension icon and push the start button. The extension will play for you.
If the extension doesn't know the answer, it will take a guess and save the result for the next time.

Note:
1 - The data stored in the extension is not totaly complete. Which means it can sometimes fail.
2 - The data is based on global monthly searches in 2017. Which means it can be obsolete if the game change it.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Higher or Lower Higher or Lower
ID iamaolggopenjoekedhikgoedhhenphg
URL Chính Thức https://chrome.google.com/webstore/detail/higher-or-lower/iamaolggopenjoekedhikgoedhhenphg
Mô tả Play HigherOrLowerGame without losing !
Kích Thước Tệp 30.76 KB
Số Lần Cài Đặt 829
Phiên Bản Hiện Tại 2.0
Cập Nhật Lần Cuối 2019-09-23
Ngày Phát Hành 2019-09-23
Đánh Giá 3.22/5 Tổng số 9 Đánh Giá
Nhà Phát Triển Elliot Lintz
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Higher or Lower",
    "version": "2.0",
    "description": "Play HigherOrLowerGame without losing !",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.higherlowergame.com\/",
                "https:\/\/www.higherlowergame.com\/",
                "http:\/\/www.higherlowergame.com\/options",
                "https:\/\/www.higherlowergame.com\/options"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage",
        "alarms",
        "unlimitedStorage",
        "activeTab",
        "tabs"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Win every Higher Lower game"
    }
}