Fleaflicker Extender
An extension that provides enhanced searching of players in your NHL fleaflicker league.
Fleaflicker Extender란 무엇입니까?
Fleaflicker Extender은(는) toomanypuppies.extension에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension that provides enhanced searching of players in your NHL fleaflicker league."입니다.
확장 프로그램 스크린샷
Fleaflicker Extender 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Provides an overlay of the Fleaflicker website that allows for more detailed searching of players in the current league. Users can now search by injury status, team, and any position classification. Quick filters let you see if players have a game today or not, and the table supports multi column sorting. If a player is selected then news about the player will be shown, and a few links to other sites with helpful information about that player. Hop into the settings to theme the UI by selecting your favorite team and toggling dark mode! --- v0.1.2 update Features - Added a new column that shows what days a player is playing this week. - Added multi-sort capability. A user can now sort up to two columns at a time with the first acting as a primary sort and the second being the secondary sort. - Added Tips section to settings page. - Added highlighting on hover throughout the table view. Fixes - Fixed overwriting of styling on main fleaflicker site. - Replace table component with native table implementation for performance improvements. - Refactor filtering functions for performance improvements. - Account for players with null values when sorting.
확장 프로그램 기본 정보
이름 | Fleaflicker Extender |
ID | mflgijpbakfaofdbfikeokooodeepmel |
공식 URL | https://chromewebstore.google.com/detail/fleaflicker-extender/mflgijpbakfaofdbfikeokooodeepmel |
설명 | An extension that provides enhanced searching of players in your NHL fleaflicker league. |
파일 크기 | 372 KB |
설치 횟수 | 52 |
현재 버전 | 0.1.2 |
최근 업데이트 | 2022-02-28 |
출시 날짜 | 2022-02-21 |
개발자 | toomanypuppies.extension |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://github.com/toomanypuppies-extension/fleaflicker-extender/issues |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "0.1.2", "name": "Fleaflicker Extender", "description": "An extension that provides enhanced searching of players in your NHL fleaflicker league. ", "permissions": [ "https:\/\/statsapi.web.nhl.com\/api\/*", "https:\/\/www.fleaflicker.com\/api\/*" ], "icons": { "16": "icons\/icon-16x16.png", "48": "icons\/icon-48x48.png", "128": "icons\/icon-128x128.png", "192": "icons\/icon-192x192.png", "256": "icons\/icon-256x256.png", "384": "icons\/icon-384x384.png", "512": "icons\/icon-512x512.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.fleaflicker.com\/nhl\/leagues\/*" ], "run_at": "document_idle", "js": [ "dist\/main.js" ], "css": [ "dist\/main.css" ] } ] } |