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" ] } |