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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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