Tasty Slither.io Friends

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

Co je Tasty Slither.io Friends?

Tasty Slither.io Friends je rozšíření Chrome vyvinuté kevin.m.ashton, a jeho hlavní funkcí je „Eating other worms on slither is fun. Eating your friends is much more tasty...“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Tasty Slither.io Friends

Stáhněte si soubory rozšíření Tasty Slither.io Friends ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Tasty Slither.io Friends Tasty Slither.io Friends
ID odkflbmdakdpamjpihjjjebolghinkbd
Oficiální URL https://chrome.google.com/webstore/detail/tasty-slitherio-friends/odkflbmdakdpamjpihjjjebolghinkbd
Popis Eating other worms on slither is fun. Eating your friends is much more tasty...
Velikost souboru 95.09 KB
Počet instalací 391
Aktuální Verze 1.0
Poslední Aktualizace 2020-04-09
Datum Vydání 2020-04-09
Vývojář kevin.m.ashton
Typ Platby free
Podporované Jazyky 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"
    ]
}