FUT Helper

This extension helps to buy and sell FUT cards in the FUT web application much easier using the keyboard First set appropriate…

FUT Helperคืออะไร?

FUT Helper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย p.mykhailov และคุณลักษณะหลักของมันคือ "This extension helps to buy and sell FUT cards in the FUT web application much easier using the keyboard First set appropriate…"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย FUT Helper

ดาวน์โหลดไฟล์ส่วนขยาย FUT Helper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension helps to buy and sell FUT cards in the FUT web application much easier using the keyboard
First set appropriate convinient keys and then use keyboard instead of mouse                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ FUT Helper FUT Helper
ID icdicpefgeajbmigaodojedcdljlnkln
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/fut-helper/icdicpefgeajbmigaodojedcdljlnkln
คำอธิบาย This extension helps to buy and sell FUT cards in the FUT web application much easier using the keyboard First set appropriate…
ขนาดไฟล์ 7.68 KB
จำนวนการติดตั้ง 67
เวอร์ชันปัจจุบัน 1.1.4
อัปเดตครั้งล่าสุด 2022-02-01
วันที่เผยแพร่ 2019-11-12
คะแนน 3.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา p.mykhailov
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "FUT Helper",
    "short_name": "FH",
    "version": "1.1.4",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.easports.com\/fifa\/ultimate-team\/web-app\/*",
                "*:\/\/www.ea.com\/fifa\/ultimate-team\/web-app\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": []
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "icons": {
        "16": "icon.png",
        "48": "icon.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "web_accessible_resources": [],
    "browser_action": {
        "default_title": "FUT Helper",
        "default_popup": "popup.html"
    }
}