Tasty Slither.io Friends

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

Wat is Tasty Slither.io Friends?

Tasty Slither.io Friends is een Chrome-extensie ontwikkeld door kevin.m.ashton, en de belangrijkste functie is "Eating other worms on slither is fun. Eating your friends is much more tasty...".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Tasty Slither.io Friends

Download Tasty Slither.io Friends-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Tasty Slither.io Friends Tasty Slither.io Friends
ID odkflbmdakdpamjpihjjjebolghinkbd
Officiële URL https://chrome.google.com/webstore/detail/tasty-slitherio-friends/odkflbmdakdpamjpihjjjebolghinkbd
Beschrijving Eating other worms on slither is fun. Eating your friends is much more tasty...
Bestandsgrootte 95.09 KB
Aantal Installaties 391
Huidige Versie 1.0
Laatst Bijgewerkt 2020-04-09
Publicatiedatum 2020-04-09
Ontwikkelaar kevin.m.ashton
Betalingswijze free
Ondersteunde Talen 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"
    ]
}