Tasty Slither.io Friends
Eating other worms on slither is fun. Eating your friends is much more tasty...
Tasty Slither.io Friends란 무엇입니까?
Tasty Slither.io Friends은(는) kevin.m.ashton에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Eating other worms on slither is fun. Eating your friends is much more tasty..."입니다.
확장 프로그램 스크린샷
Tasty Slither.io Friends 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Click the "Eat Friends" button and you will be prompted to join a party with your friends. Once you are in a party with your friends little green boxes appear on the screen showing the distance and direction of your friends.
확장 프로그램 기본 정보
이름 | ![]() |
ID | odkflbmdakdpamjpihjjjebolghinkbd |
공식 URL | https://chrome.google.com/webstore/detail/tasty-slitherio-friends/odkflbmdakdpamjpihjjjebolghinkbd |
설명 | Eating other worms on slither is fun. Eating your friends is much more tasty... |
파일 크기 | 95.09 KB |
설치 횟수 | 391 |
현재 버전 | 1.0 |
최근 업데이트 | 2020-04-09 |
출시 날짜 | 2020-04-09 |
개발자 | kevin.m.ashton |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tasty Slither.io Friends", "version": "1.0", "description": "Eating other worms on slither is fun. Eating your friends is much more tasty...", "manifest_version": 2, "homepage_url": "https:\/\/github.com\/kevin-ashton\/tasty-slither-io-friends", "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_icon": "icon.png", "default_title": "Inject!" }, "content_scripts": [ { "all_frames": false, "js": [ "inject.js" ], "matches": [ "*:\/\/slither.io\/*" ], "run_at": "document_start" } ], "web_accessible_resources": [ "script.js", "jquery.js" ], "permissions": [ "*:\/\/slither.io\/*", "storage", "activeTab" ] } |