No more projections

Remove projections from popular Fantasy Football platforms!

No more projectionsคืออะไร?

No more projections เป็นส่วนขยายของ Chrome ที่พัฒนาโดย InblEric และคุณลักษณะหลักของมันคือ "Remove projections from popular Fantasy Football platforms!"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย No more projections

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

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

                        This extension will remove fantasy football projections from popular fantasy football platforms.

Current sites support:
ESPN: removes projections and win probability from fantasycast and My Team.                    

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

ชื่อ No more projections No more projections
ID cidgbgcboamddfhgifoijpgkoihdkhbf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/no-more-projections/cidgbgcboamddfhgifoijpgkoihdkhbf
คำอธิบาย Remove projections from popular Fantasy Football platforms!
ขนาดไฟล์ 10.67 KB
จำนวนการติดตั้ง 18
เวอร์ชันปัจจุบัน 0.1.0
อัปเดตครั้งล่าสุด 2019-10-15
วันที่เผยแพร่ 2019-10-15
คะแนน 4.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา InblEric
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "No more projections",
    "version": "0.1.0",
    "description": "Remove projections from popular Fantasy Football platforms!",
    "browser_action": {
        "default_icon": "images\/icon.png"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "http:\/\/*.espn.com\/*",
                "https:\/\/*.espn.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "manifest_version": 2
}