Coaster Credits Counter

This extension will help you count your coaster credits,everything will be synced to all your devices as long as you are connected.

Coaster Credits Counterคืออะไร?

Coaster Credits Counter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Valentin GERARD และคุณลักษณะหลักของมันคือ "This extension will help you count your coaster credits,everything will be synced to all your devices as long as you are connected."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Coaster Credits Counter

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

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

                        Adds a button on rcdb website to help you count the coasters that you have ridden !
This extension can :
- Keep track of the coasters you've been on
- Export your list in a text file
- Import a list (in case you erased your browser settings)
- Remove coasters from the list
- When list is saved it is synced with all your other devices (as long as you are connected)
- Display a level depending on how many coasters you have ridden (there are 25 levels have fun !)
===============================
Update May 21 2022:

Version 1.4:

Fixed a bug that was preventing the list from saving since version 1.3.


===============================
Update April 12 2022:

New version 1.3 : 
What's new:

- Added park location in the list
- Achievements page improved
- Small bug fixes

================================
New version 1.2 !
What's new :
 - Improved readability in the popup
 - Achievements page used to display Achievements , Coaster List and all the parcs that you visited ( and counting them)

As a non native english speaker it is possible that there is some misspelled text, I'm sorry if that's the case.

If you have a problem you can contact me : [email protected]                    

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

ชื่อ Coaster Credits Counter Coaster Credits Counter
ID nkocomliefjmeonocklhmfpjnollpiji
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/coaster-credits-counter/nkocomliefjmeonocklhmfpjnollpiji
คำอธิบาย This extension will help you count your coaster credits,everything will be synced to all your devices as long as you are connected.
ขนาดไฟล์ 1.11 MB
จำนวนการติดตั้ง 39
เวอร์ชันปัจจุบัน 1.4
อัปเดตครั้งล่าสุด 2022-05-24
วันที่เผยแพร่ 2021-05-10
คะแนน 4.50/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Valentin GERARD
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Coaster Credits Counter",
    "description": "This extension will help you count your coaster credits,everything will be synced to all your devices as long as you are connected.",
    "version": "1.4",
    "author": "Valentin GERARD",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_icon": "icon128.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:\/\/rcdb.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/rcdb.com\/*"
            ],
            "js": [
                "content.js",
                "libraries\/lodash.js",
                "libraries\/jquery.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "CompleteParcList.json"
            ],
            "matches": [
                ""
            ]
        }
    ]
}