Slither.io Ninja (WASD and more)
WASD to move and (much) more!
Slither.io Ninja (WASD and more)란 무엇입니까?
Slither.io Ninja (WASD and more)은(는) http://daniguardiola.me에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "WASD to move and (much) more!"입니다.
Slither.io Ninja (WASD and more) 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Use this mod to add keyboard controls to your Slither.io gameplay Play like an MLG pro m8 and get to the top of the ranking! TO ENABLE AND DISABLE THE CONTROLS, USE THE SWITCH ON THE TOP RIGHT CORNER OF THE SCREEN /* CONTROLS *\ Move - WASD or arrow keys Boost - Space Supports ANY slitherio client though i only know the official one ** CHANGELOG ** 1.0 * Launched == INFO ABOUT PERMISSIONS == The permission for all urls is requested because this mod supports not only the official address of the game (slither.io) but also any other alternative client. The way this works is via a small and non-intrusive piece of code that gets executed in every page and that detects if the current website is an Agar.io client. If positive, the mod will get loaded into the page.
확장 프로그램 기본 정보
이름 | |
ID | eolomglgggfcbbcmfohojmakeolmbbjn |
공식 URL | https://chrome.google.com/webstore/detail/slitherio-ninja-wasd-and/eolomglgggfcbbcmfohojmakeolmbbjn |
설명 | WASD to move and (much) more! |
파일 크기 | 247 KB |
설치 횟수 | 1,134 |
현재 버전 | 1.0.1 |
최근 업데이트 | 2016-06-28 |
출시 날짜 | 2016-06-28 |
평점 | 2.50/5 총 12 개의 평점 |
개발자 | http://daniguardiola.me |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Slither.io Ninja (WASD and more)", "description": "WASD to move and (much) more!", "version": "1.0.1", "background": { "scripts": [ "background.js" ], "persistent": true }, "icons": { "16": "logo\/16.png", "32": "logo\/32.png", "48": "logo\/48.png", "64": "logo\/64.png", "72": "logo\/72.png", "96": "logo\/96.png", "128": "logo\/128.png", "144": "logo\/144.png", "192": "logo\/192.png", "512": "logo\/512.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "style.css" ], "js": [ "script.js" ] } ], "permissions": [ "storage" ] } |