No more projections

Remove projections from popular Fantasy Football platforms!

What is No more projections?

No more projections is a Chrome extension developed by InblEric, and its main feature is "Remove projections from popular Fantasy Football platforms!".

Extension Screenshots

screenshot
screenshot

Download No more projections Extension CRX File

Download No more projections extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name No more projections No more projections
ID cidgbgcboamddfhgifoijpgkoihdkhbf
Official URL https://chromewebstore.google.com/detail/no-more-projections/cidgbgcboamddfhgifoijpgkoihdkhbf
Description Remove projections from popular Fantasy Football platforms!
File Size 10.67 KB
Installation Count 18
Current Version 0.1.0
Last Updated 2019-10-15
Publish Date 2019-10-15
Rating 4.00/5 Total 1 Ratings
Developer InblEric
Email [email protected]
Payment Type free
Supported Languages 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
}