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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον kevin.m.ashton, και η κύρια λειτουργία του είναι "Eating other worms on slither is fun. Eating your friends is much more tasty...".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Tasty Slither.io Friends
Λήψη αρχείων επέκτασης Tasty Slither.io Friends σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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" ] } |