Draftnik for FPL
Save team drafts you create on Fantasy Premier League.
O que é Draftnik for FPL?
Draftnik for FPL é uma extensão do Chrome desenvolvida por Alex Mathew, e sua principal característica é "Save team drafts you create on Fantasy Premier League.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Draftnik for FPL
Baixe arquivos de extensão Draftnik for FPL 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
Do you play Fantasy Premier League? Do you plan different squad combinations before hitting that "Make Transfers" button? Do you use screenshots to keep track of the various drafts you create? Say hello to Draftnik. And say goodbye to those folders full of screenshots! The Draftnik Chrome extension adds a "Save Draft" button on the FPL transfers page for you to save the current squad of 15 you have created. You can view your saved drafts by clicking on the Draftnik logo on the extensions list (next to the address bar on Chrome). You can also view all your saved drafts on the Draftnik Dashboard (http://app.draftnik.cc/)
Informações Básicas da Extensão
Nome | Draftnik for FPL |
ID | eeolkemdaflnkhjpkodccelahhbdkhpf |
URL Oficial | https://chromewebstore.google.com/detail/draftnik-for-fpl/eeolkemdaflnkhjpkodccelahhbdkhpf |
Descrição | Save team drafts you create on Fantasy Premier League. |
Tamanho do Arquivo | 1.26 MB |
Contagem de Instalações | 257 |
Versão Atual | 2.1.0 |
Última Atualização | 2022-07-23 |
Data de Publicação | 2020-08-19 |
Classificação | 5.00/5 Total de 5 Avaliações |
Desenvolvedor | Alex Mathew |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | http://draftnik.cc/ |
URL da Página de Ajuda | https://twitter.com/alxmth03/ |
URL da Página de Política de Privacidade | http://app.draftnik.cc/privacy-policy.html |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Save team drafts you create on Fantasy Premier League.", "version": "2.1.0", "manifest_version": 3, "name": "Draftnik for FPL", "short_name": "Draftnik", "icons": { "16": "icons\/logo16.png", "48": "icons\/logo48.png", "128": "icons\/logo128.png" }, "web_accessible_resources": [ { "resources": [ "icons\/logo48.png" ], "matches": [ "https:\/\/fantasy.premierleague.com\/*" ] } ], "content_scripts": [ { "matches": [ "https:\/\/fantasy.premierleague.com\/*" ], "js": [ "content.bundle.js" ], "run_at": "document_end" } ], "options_page": "options.html", "background": { "service_worker": "background.bundle.js" }, "permissions": [ "storage" ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" } } |