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. 擴展基本資訊
| 名稱 | |
| ID | cidgbgcboamddfhgifoijpgkoihdkhbf |
| 官方網址 | 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
} | |