Higher or Lower

Play HigherOrLowerGame without losing !

Qu'est-ce que Higher or Lower ?

Higher or Lower est une extension Chrome développée par Elliot Lintz, et sa fonction principale est "Play HigherOrLowerGame without losing !".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Higher or Lower

Téléchargez les fichiers d'extension Higher or Lower au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Higher or Lower Higher or Lower
ID iamaolggopenjoekedhikgoedhhenphg
URL Officiel https://chrome.google.com/webstore/detail/higher-or-lower/iamaolggopenjoekedhikgoedhhenphg
Description Play HigherOrLowerGame without losing !
Taille du Fichier 30.76 KB
Nombre d'Installations 829
Version Actuelle 2.0
Dernière Mise à Jour 2019-09-23
Date de Publication 2019-09-23
Évaluation 3.22/5 Total 9 Évaluations
Développeur Elliot Lintz
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}