Tasty Slither.io Friends

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

Cos'è Tasty Slither.io Friends?

Tasty Slither.io Friends è un'estensione di Chrome sviluppata da kevin.m.ashton, e la sua funzione principale è "Eating other worms on slither is fun. Eating your friends is much more tasty...".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Tasty Slither.io Friends

Scarica i file di estensione Tasty Slither.io Friends in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Tasty Slither.io Friends Tasty Slither.io Friends
ID odkflbmdakdpamjpihjjjebolghinkbd
URL Ufficiale https://chrome.google.com/webstore/detail/tasty-slitherio-friends/odkflbmdakdpamjpihjjjebolghinkbd
Descrizione Eating other worms on slither is fun. Eating your friends is much more tasty...
Dimensione del File 95.09 KB
Conteggio Installazioni 391
Versione Corrente 1.0
Ultimo Aggiornamento 2020-04-09
Data di Pubblicazione 2020-04-09
Sviluppatore kevin.m.ashton
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}