RotoGrinders - Underdog Tools
RotoGrinders projections and player props on Underdog Fantasy
什麼是RotoGrinders - Underdog Tools?
RotoGrinders - Underdog Tools是由David開發的Chrome擴展程式,該擴展的主要功能是“RotoGrinders projections and player props on Underdog Fantasy”。
擴展截圖
下載RotoGrinders - Underdog Tools擴展crx文件
下載RotoGrinders - Underdog Tools擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension displays RotoGrinders player projections, in a variety of stat categories, for pick'em contests to help you make informed decisions in your contests. To access this content, RotoGrinders premium subscribers must sign into the extension. 擴展基本資訊
| 名稱 | |
| ID | gmkifldndgcobdkfnfdfhmkmenjcbgoo |
| 官方網址 | https://chrome.google.com/webstore/detail/rotogrinders-underdog-too/gmkifldndgcobdkfnfdfhmkmenjcbgoo |
| 簡介 | RotoGrinders projections and player props on Underdog Fantasy |
| 檔案大小 | 79.37 KB |
| 安裝次數 | 309 |
| 目前版本 | 1.0.24 |
| 更新時間 | 2024-03-06 |
| 上架時間 | 2021-11-26 |
| 開發者 | David |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://rotogrinders.com |
| 說明頁面URL | https://rotogrinders.com |
| 隱私政策頁面URL | https://rotogrinders.com/static/privacy-policy |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "RotoGrinders - Underdog Tools",
"description": "RotoGrinders projections and player props on Underdog Fantasy",
"version": "1.0.24",
"manifest_version": 3,
"host_permissions": [
"*:\/\/*.rotogrinders.com\/*",
"*:\/\/underdogfantasy.com\/*"
],
"background": {
"service_worker": "background.js",
"run_at": "document_start"
},
"content_scripts": [
{
"matches": [
"*:\/\/underdogfantasy.com\/pick-em\/*"
],
"js": [
"libraries\/jquery.min.js",
"libraries\/bindly.js",
"content\/statmapping.js",
"content\/element_binds.js",
"content\/main.js"
],
"css": [
"content\/css\/custom.css"
],
"run_at": "document_start"
}
],
"permissions": [
"storage"
],
"web_accessible_resources": [
{
"resources": [
"images\/*"
],
"matches": [
"*:\/\/*\/*"
]
}
],
"incognito": "spanning",
"icons": {
"16": ".\/images\/icon_16.png",
"48": ".\/images\/icon_48.png",
"128": ".\/images\/icon_128.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"48": ".\/images\/icon_48.png"
}
}
} | |