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"
    ]
}