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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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" } } |