Draftnik for FPL
Save team drafts you create on Fantasy Premier League.
Draftnik for FPL란 무엇입니까?
Draftnik for FPL은(는) Alex Mathew에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Save team drafts you create on Fantasy Premier League."입니다.
확장 프로그램 스크린샷
Draftnik for FPL 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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/)
확장 프로그램 기본 정보
이름 | Draftnik for FPL |
ID | eeolkemdaflnkhjpkodccelahhbdkhpf |
공식 URL | https://chromewebstore.google.com/detail/draftnik-for-fpl/eeolkemdaflnkhjpkodccelahhbdkhpf |
설명 | Save team drafts you create on Fantasy Premier League. |
파일 크기 | 1.26 MB |
설치 횟수 | 257 |
현재 버전 | 2.1.0 |
최근 업데이트 | 2022-07-23 |
출시 날짜 | 2020-08-19 |
평점 | 5.00/5 총 5 개의 평점 |
개발자 | Alex Mathew |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://draftnik.cc/ |
도움말 페이지 URL | https://twitter.com/alxmth03/ |
개인정보 보호 정책 페이지 URL | http://app.draftnik.cc/privacy-policy.html |
지원되는 언어 | 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'" } } |