No more projections

Remove projections from popular Fantasy Football platforms!

Apa itu No more projections?

No more projections adalah ekstensi Chrome yang dikembangkan oleh InblEric, dan fitur utamanya adalah "Remove projections from popular Fantasy Football platforms!".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi No more projections

Unduh file ekstensi No more projections dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama No more projections No more projections
ID cidgbgcboamddfhgifoijpgkoihdkhbf
URL Resmi https://chromewebstore.google.com/detail/no-more-projections/cidgbgcboamddfhgifoijpgkoihdkhbf
Deskripsi Remove projections from popular Fantasy Football platforms!
Ukuran File 10.67 KB
Jumlah Instalasi 18
Versi Saat Ini 0.1.0
Terakhir Diperbarui 2019-10-15
Tanggal Publikasi 2019-10-15
Penilaian 4.00/5 Total 1 Penilaian
Pengembang InblEric
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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
}