CONfetti

A set of improvements for the Conflict of Nations UI experience.

CONfetti क्या है?

CONfetti Taviandir द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A set of improvements for the Conflict of Nations UI experience."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में CONfetti एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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