Tasty Slither.io Friends

Eating other worms on slither is fun. Eating your friends is much more tasty...

O que é Tasty Slither.io Friends?

Tasty Slither.io Friends é uma extensão do Chrome desenvolvida por kevin.m.ashton, e sua principal característica é "Eating other worms on slither is fun. Eating your friends is much more tasty...".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Tasty Slither.io Friends

Baixe arquivos de extensão Tasty Slither.io Friends no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Tasty Slither.io Friends Tasty Slither.io Friends
ID odkflbmdakdpamjpihjjjebolghinkbd
URL Oficial https://chrome.google.com/webstore/detail/tasty-slitherio-friends/odkflbmdakdpamjpihjjjebolghinkbd
Descrição Eating other worms on slither is fun. Eating your friends is much more tasty...
Tamanho do Arquivo 95.09 KB
Contagem de Instalações 391
Versão Atual 1.0
Última Atualização 2020-04-09
Data de Publicação 2020-04-09
Desenvolvedor kevin.m.ashton
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}