CONfetti
A set of improvements for the Conflict of Nations UI experience.
CONfettiคืออะไร?
CONfetti เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Taviandir และคุณลักษณะหลักของมันคือ "A set of improvements for the Conflict of Nations UI experience."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย CONfetti
ดาวน์โหลดไฟล์ส่วนขยาย CONfetti ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
CONfetti enhances the UI experience in Conflict Of Nations. I created this extension to add functionality that I and others think should already exist. Disclaimer: The extension works solely by modifying the UI (HTML) of the CON client. It in NO WAY tries to intercept or modify any data or API requests. This extension adheres to and respects the game's Terms Of Use. Features: - Revamped Events window - Highlight unread events - Filter by type - Filter by country - "Research Completed" specifies unit type - Clearer Agent missions outcomes - Take notes (per game, saved in the browser) - Window showing Units by Building Level - Hide tutorial advisor in the top-right - Messages: CTRL-Enter to send message Note: The extension is designed for English language in the game. If you are using another client language, some functionality will not work properly.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | CONfetti |
ID | meibidpiiljmhnhfpcbhjoiemkopmkpb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/confetti/meibidpiiljmhnhfpcbhjoiemkopmkpb |
คำอธิบาย | A set of improvements for the Conflict of Nations UI experience. |
ขนาดไฟล์ | 31.8 KB |
จำนวนการติดตั้ง | 44 |
เวอร์ชันปัจจุบัน | 1.2 |
อัปเดตครั้งล่าสุด | 2022-05-29 |
วันที่เผยแพร่ | 2022-04-06 |
คะแนน | 4.75/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | Taviandir |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/taviandir/confetti-extension |
URL หน้าช่วยเหลือ | https://github.com/taviandir/confetti-extension/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "CONfetti", "description": "A set of improvements for the Conflict of Nations UI experience.", "version": "1.2", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "activeTab" ], "action": { "default_popup": "popup.html" }, "options_page": "options.html", "host_permissions": [ "*:\/\/*.conflictnations.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*.conflictnations.com\/*" ], "all_frames": true, "js": [ "extension.js" ] } ], "icons": { "48": "logo_48.png", "128": "logo_128.png" } } |