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 |
| 公式URL | 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 |
| Eメール | [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"
}
}
} | |