CONfetti
A set of improvements for the Conflict of Nations UI experience.
什麼是CONfetti?
CONfetti是由Taviandir開發的Chrome擴展程式,該擴展的主要功能是“A set of improvements for the Conflict of Nations UI experience.”。
擴展截圖
下載CONfetti擴展crx文件
下載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 |
官方網址 | 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" } } |