No more projections

Remove projections from popular Fantasy Football platforms!

No more projections là gì?

No more projections là một tiện ích mở rộng Chrome được phát triển bởi InblEric, và tính năng chính của nó là "Remove projections from popular Fantasy Football platforms!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng No more projections

Tải xuống các tệp mở rộng No more projections dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên No more projections No more projections
ID cidgbgcboamddfhgifoijpgkoihdkhbf
URL Chính Thức https://chromewebstore.google.com/detail/no-more-projections/cidgbgcboamddfhgifoijpgkoihdkhbf
Mô tả Remove projections from popular Fantasy Football platforms!
Kích Thước Tệp 10.67 KB
Số Lần Cài Đặt 18
Phiên Bản Hiện Tại 0.1.0
Cập Nhật Lần Cuối 2019-10-15
Ngày Phát Hành 2019-10-15
Đánh Giá 4.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển InblEric
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
}