Tasty Slither.io Friends
Eating other worms on slither is fun. Eating your friends is much more tasty...
Hvad er Tasty Slither.io Friends?
Tasty Slither.io Friends er en Chrome-udvidelse udviklet af kevin.m.ashton, og dens hovedfunktion er "Eating other worms on slither is fun. Eating your friends is much more tasty...".
Udvidelsesskærmbilleder
Download Tasty Slither.io Friends-udvidelses-CRX-fil
Download Tasty Slither.io Friends-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | ![]() |
ID | odkflbmdakdpamjpihjjjebolghinkbd |
Officiel URL | https://chrome.google.com/webstore/detail/tasty-slitherio-friends/odkflbmdakdpamjpihjjjebolghinkbd |
Beskrivelse | Eating other worms on slither is fun. Eating your friends is much more tasty... |
Filstørrelse | 95.09 KB |
Antal Installationer | 391 |
Nuværende Version | 1.0 |
Senest Opdateret | 2020-04-09 |
Udgivelsesdato | 2020-04-09 |
Udvikler | kevin.m.ashton |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } |