PointyBall
Adds projections and other goodies to ESPN Fantasy Football.
O que é PointyBall?
PointyBall é uma extensão do Chrome desenvolvida por Evan Sangaline, e sua principal característica é "Adds projections and other goodies to ESPN Fantasy Football.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão PointyBall
Baixe arquivos de extensão PointyBall no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Adds a tab to ESPN Fantasy Football that gives you a detailed overview of projections for both the next week and the rest of season for all of the teams in your league. Makes it super easy to find good trades! This is our beta launch so if you run into any problems, or have any suggestions, then please email [email protected] and we'll get back to you as soon as we can.
Informações Básicas da Extensão
Nome | PointyBall |
ID | abddalnolclclkcdpmochnccnllccpoa |
URL Oficial | https://chromewebstore.google.com/detail/pointyball/abddalnolclclkcdpmochnccnllccpoa |
Descrição | Adds projections and other goodies to ESPN Fantasy Football. |
Tamanho do Arquivo | 138 KB |
Contagem de Instalações | 159 |
Versão Atual | 1.0.8 |
Última Atualização | 2016-11-19 |
Data de Publicação | 2016-11-18 |
Classificação | 4.60/5 Total de 5 Avaliações |
Desenvolvedor | Evan Sangaline |
Tipo de Pagamento | free |
Site da Extensão | http://pointyball.com |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "PointyBall", "description": "Adds projections and other goodies to ESPN Fantasy Football.", "homepage_url": "https:\/\/pointyball.com", "content_scripts": [ { "matches": [ "*:\/\/games.espn.com\/*" ], "js": [ "content\/index.js" ], "run_at": "document_start" } ], "background": { "persistent": true, "scripts": [ "background\/index.js" ] }, "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'", "permissions": [ "background", "*:\/\/api.pointyball.com\/*", "*:\/\/games.espn.com\/*", "https:\/\/www.google-analytics.com\/*" ], "icons": { "128": "$assets\/icon128.png" }, "version": "1.0.8" } |