RotoGrinders - PrizePicks Tools
RotoGrinders projections and player props on PrizePicks
RotoGrinders - PrizePicks Toolsとは何ですか?
RotoGrinders - PrizePicks ToolsはDavidによって開発されたChromeの拡張機能で、その主な機能は「RotoGrinders projections and player props on PrizePicks」です。
拡張機能のスクリーンショット
RotoGrinders - PrizePicks Tools拡張機能のCRXファイルをダウンロード
RotoGrinders - PrizePicks Tools拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Premium RotoGrinders subscribers can view player projections for a variety of stat categories when entering contests on PrizePicks to help them make informed decisions. To access this content, RotoGrinders premium subscribers must sign into the extension. 拡張機能の基本情報
| 名前 | |
| ID | halpfniallabfenmpmkchcinbkigcjkj |
| 公式URL | https://chromewebstore.google.com/detail/rotogrinders-prizepicks-t/halpfniallabfenmpmkchcinbkigcjkj |
| 説明 | RotoGrinders projections and player props on PrizePicks |
| ファイルサイズ | 276 KB |
| インストール数 | 708 |
| 現在のバージョン | 1.0.40 |
| 最終更新日 | 2024-02-23 |
| 公開日 | 2022-01-18 |
| 評価 | 1.00/5 合計 2 レビュー |
| 開発者 | 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",
"manifest_version": 3,
"name": "RotoGrinders - PrizePicks Tools",
"action": {
"default_icon": {
"48": "images\/icon_48.png"
},
"show_matches": [
"https:\/\/app.prizepicks.com\/*"
],
"default_popup": "html\/prizepicksPopup.html"
},
"version": "1.0.40",
"description": "RotoGrinders projections and player props on PrizePicks",
"background": {
"service_worker": "js\/background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/app.prizepicks.com\/*"
],
"js": [
"js\/extInfo.js",
"js\/statMapping.js",
"js\/nameMatching.js",
"js\/picksBoard.js",
"js\/initialization.js"
],
"css": [
"css\/extInfoModal.css"
],
"run_at": "document_start",
"all_frames": false,
"exclude_matches": [
"*:\/\/*\/*debug*"
]
}
],
"host_permissions": [
"https:\/\/*.rotogrinders.com\/*"
],
"permissions": [
"storage"
],
"web_accessible_resources": [
{
"resources": [
"html\/extInfoModal.html",
"images\/logo.png",
"images\/icon_128.png",
"images\/picks-board-display.png",
"images\/premium-popup.png",
"images\/icon_48.png"
],
"matches": [
"https:\/\/app.prizepicks.com\/*"
],
"all_frames": false
}
],
"icons": {
"16": "images\/icon_16.png",
"48": "images\/icon_48.png",
"128": "images\/icon_128.png"
}
} | |