Tasty Slither.io Friends

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

Was ist Tasty Slither.io Friends?

Tasty Slither.io Friends ist eine Chrome-Erweiterung, die von kevin.m.ashton entwickelt wurde, und ihr Hauptmerkmal ist "Eating other worms on slither is fun. Eating your friends is much more tasty...".

Erweiterungsscreenshots

screenshot

Tasty Slither.io Friends-Erweiterungs-CRX-Datei herunterladen

Laden Sie Tasty Slither.io Friends-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Tasty Slither.io Friends Tasty Slither.io Friends
ID odkflbmdakdpamjpihjjjebolghinkbd
Offizielle URL https://chrome.google.com/webstore/detail/tasty-slitherio-friends/odkflbmdakdpamjpihjjjebolghinkbd
Beschreibung Eating other worms on slither is fun. Eating your friends is much more tasty...
Dateigröße 95.09 KB
Installationsanzahl 391
Aktuelle Version 1.0
Letztes Update 2020-04-09
Veröffentlichungsdatum 2020-04-09
Entwickler kevin.m.ashton
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}