Tasty Slither.io Friends

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

什么是Tasty Slither.io Friends?

Tasty Slither.io Friends是由kevin.m.ashton开发的Chrome扩展程序,该扩展的主要功能是“Eating other worms on slither is fun. Eating your friends is much more tasty...”。

扩展截图

screenshot

下载Tasty Slither.io Friends扩展crx文件

下载Tasty Slither.io Friends扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Tasty Slither.io Friends Tasty Slither.io Friends
ID odkflbmdakdpamjpihjjjebolghinkbd
官方URL https://chrome.google.com/webstore/detail/tasty-slitherio-friends/odkflbmdakdpamjpihjjjebolghinkbd
简介 Eating other worms on slither is fun. Eating your friends is much more tasty...
文件大小 95.09 KB
安装次数 391
当前版本 1.0
更新时间 2020-04-09
上架时间 2020-04-09
开发者 kevin.m.ashton
付费类型 free
支持的语言 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"
    ]
}