No more projections
Remove projections from popular Fantasy Football platforms!
No more projectionsとは何ですか?
No more projectionsはInblEricによって開発されたChromeの拡張機能で、その主な機能は「Remove projections from popular Fantasy Football platforms!」です。
拡張機能のスクリーンショット
No more projections拡張機能のCRXファイルをダウンロード
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 |
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 |
Eメール | [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 } |