Higher or Lower

Play HigherOrLowerGame without losing !

¿Qué es Higher or Lower?

Higher or Lower es una extensión de Chrome desarrollada por Elliot Lintz, y su función principal es "Play HigherOrLowerGame without losing !".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Higher or Lower

Descarga archivos de extensión Higher or Lower en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Higher or Lower Higher or Lower
ID iamaolggopenjoekedhikgoedhhenphg
URL Oficial https://chrome.google.com/webstore/detail/higher-or-lower/iamaolggopenjoekedhikgoedhhenphg
Descripción Play HigherOrLowerGame without losing !
Tamaño del Archivo 30.76 KB
Cantidad de Instalaciones 829
Versión Actual 2.0
Última Actualización 2019-09-23
Fecha de Publicación 2019-09-23
Calificación 3.22/5 Total de 9 Calificaciones
Desarrollador Elliot Lintz
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
    }
}