Better Howrse

This extension displays more informations in the game about horses and competitions to make you feel more comfortable when playing.

Better Howrseคืออะไร?

Better Howrse เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Gwen COSTET และคุณลักษณะหลักของมันคือ "This extension displays more informations in the game about horses and competitions to make you feel more comfortable when playing."

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Patch 2.2.1: 
- Fixe a bug preventing food selection for foals

Update 2.2.0 from June 26, 2023:
- Added a popup when clicking on the application logo to choose which features to enable.
- Fixed a bug preventing food selection when the underweight or overweight message appears.
- Added language support for Norwegian (NO) and Polish (PL)
- Added support for the UK version (howrse.co.uk)

---

This extension makes it easier to obtain various information from the game, such as the blup, the PG, the skills, and also to display a victory coefficient to better manage blups in particular (the higher the coefficient, the easier it is to win).

Display of pets from different pages (sales, etc.) but also display of all information from the directory by searching for a horse name.

Automatic selection of fodder and oats to save time!

Ability to switch to the previous or next horse using the arrow keys on the keyboard when you are taking care of a horse.

---

If you have suggestions, or a problem:
https://github.com/Gwenillia/Better-Equideow/issues                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Better Howrse Better Howrse
ID gkopbgamdhaolbjalfcbmbjkjcmgffjp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/better-howrse/gkopbgamdhaolbjalfcbmbjkjcmgffjp
คำอธิบาย This extension displays more informations in the game about horses and competitions to make you feel more comfortable when playing.
ขนาดไฟล์ 43.38 KB
จำนวนการติดตั้ง 137
เวอร์ชันปัจจุบัน 2.2.1
อัปเดตครั้งล่าสุด 2023-07-02
วันที่เผยแพร่ 2022-05-13
คะแนน 4.75/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Gwen COSTET
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en,fr,no,pl
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "fr",
    "version": "2.2.1",
    "manifest_version": 3,
    "author": "TC-Dev",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "\/images\/icon-16x16.png",
        "32": "\/images\/icon-32x32.png",
        "48": "\/images\/icon-48x48.png",
        "128": "\/images\/icon-128x128.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.equideow.com\/*",
                "*:\/\/*.howrse.com\/*",
                "*:\/\/*.howrse.no\/*",
                "*:\/\/*.howrse.co.uk\/*"
            ],
            "run_at": "document_end",
            "js": [
                "translation.js",
                "loadingDisplayObserver.js",
                "moreInfos.js",
                "competitionRatio.js",
                "foodSelect.js"
            ]
        }
    ]
}