Tasty Slither.io Friends
Eating other worms on slither is fun. Eating your friends is much more tasty...
Tasty Slither.io Friends là gì?
Tasty Slither.io Friends là một tiện ích mở rộng Chrome được phát triển bởi kevin.m.ashton, và tính năng chính của nó là "Eating other worms on slither is fun. Eating your friends is much more tasty...".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Tasty Slither.io Friends
Tải xuống các tệp mở rộng Tasty Slither.io Friends dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | ![]() |
ID | odkflbmdakdpamjpihjjjebolghinkbd |
URL Chính Thức | https://chrome.google.com/webstore/detail/tasty-slitherio-friends/odkflbmdakdpamjpihjjjebolghinkbd |
Mô tả | Eating other worms on slither is fun. Eating your friends is much more tasty... |
Kích Thước Tệp | 95.09 KB |
Số Lần Cài Đặt | 391 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2020-04-09 |
Ngày Phát Hành | 2020-04-09 |
Nhà Phát Triển | kevin.m.ashton |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |