Fleaflicker Extender

An extension that provides enhanced searching of players in your NHL fleaflicker league.

Fleaflicker Extenderคืออะไร?

Fleaflicker Extender เป็นส่วนขยายของ Chrome ที่พัฒนาโดย toomanypuppies.extension และคุณลักษณะหลักของมันคือ "An extension that provides enhanced searching of players in your NHL fleaflicker league."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Fleaflicker Extender

ดาวน์โหลดไฟล์ส่วนขยาย Fleaflicker Extender ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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 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"
            ]
        }
    ]
}