Higher or Lower
Play HigherOrLowerGame without losing !
Higher or Lower란 무엇입니까?
Higher or Lower은(는) Elliot Lintz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Play HigherOrLowerGame without losing !"입니다.
확장 프로그램 스크린샷
Higher or Lower 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | |
ID | iamaolggopenjoekedhikgoedhhenphg |
공식 URL | https://chrome.google.com/webstore/detail/higher-or-lower/iamaolggopenjoekedhikgoedhhenphg |
설명 | Play HigherOrLowerGame without losing ! |
파일 크기 | 30.76 KB |
설치 횟수 | 829 |
현재 버전 | 2.0 |
최근 업데이트 | 2019-09-23 |
출시 날짜 | 2019-09-23 |
평점 | 3.22/5 총 9 개의 평점 |
개발자 | Elliot Lintz |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | 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" } } |