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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kevin.m.ashton และคุณลักษณะหลักของมันคือ "Eating other worms on slither is fun. Eating your friends is much more tasty..."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tasty Slither.io Friends

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}