Star Citizen CCU Game
Get a quick overview over all your ships/upgrades in your hangar and buyback, plan optimal upgrade chains.
Star Citizen CCU Game란 무엇입니까?
Star Citizen CCU Game은(는) https://ccugame.app에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get a quick overview over all your ships/upgrades in your hangar and buyback, plan optimal upgrade chains."입니다.
확장 프로그램 스크린샷
Star Citizen CCU Game 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This is a companion extension to ccugame.app. CCU Game provides a concise overview over all your ships and items in your hangar and buyback. It also shows the currently available items in the store and makes them easily searchable. Based on this data automatic calculation of optimal CCU chains to create ships with the most savings for you is provided. The extension helps to get the data from robertsspaceindustries.com which is otherwise not accessible to ccugame.app. The extension only runs in your browser and doesn't send any data to another server. You need to be logged in on robertsspaceindustries.com, you don't need to login in the extension itself, so your credentials stay secure. Purely optionally, you can sync your data through the cloud with the https://ccugame.app website (e.g. to access the data from your mobile device). The video https://www.youtube.com/watch?v=AkFug1OKWJs by Karolinger gives a good overview of the tool. -- This is a hobby project (free of charge). While I try to do everything to the best of my knowledge and belief, this software comes without any warranty whatsoever and I assume no liability for any problems or damages which might occur due to its use.
확장 프로그램 기본 정보
이름 | Star Citizen CCU Game |
ID | efkaeodcipbmkhbbfmiagjcnnlhdkdlf |
공식 URL | https://chromewebstore.google.com/detail/star-citizen-ccu-game/efkaeodcipbmkhbbfmiagjcnnlhdkdlf |
설명 | Get a quick overview over all your ships/upgrades in your hangar and buyback, plan optimal upgrade chains. |
파일 크기 | 27.57 KB |
설치 횟수 | 41,371 |
현재 버전 | 6.0.2 |
최근 업데이트 | 2022-10-08 |
출시 날짜 | 2021-07-27 |
평점 | 4.88/5 총 32 개의 평점 |
개발자 | https://ccugame.app |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://discord.gg/3mm29rPsh6 |
개인정보 보호 정책 페이지 URL | https://ccugame.app/privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Star Citizen CCU Game", "description": "Get a quick overview over all your ships\/upgrades in your hangar and buyback, plan optimal upgrade chains.", "version": "6.0.2", "host_permissions": [ "https:\/\/robertsspaceindustries.com\/*", "https:\/\/support.robertsspaceindustries.com\/hc\/en-us\/articles\/360003093114" ], "permissions": [ "storage", "cookies", "unlimitedStorage" ], "manifest_version": 3, "icons": { "16": "ccugame-16.png", "32": "ccugame-32.png", "128": "ccugame_128.png" }, "background": { "service_worker": "background.js", "type": "module" }, "action": { "default_title": "Star Citizen CCU Game", "default_icon": { "16": "ccugame-16.png", "32": "ccugame-32.png", "128": "ccugame_128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/ccugame.app\/*" ], "js": [ "ccugame-app-integration_content-script.js" ], "css": [], "run_at": "document_start" } ], "content_security_policy": { "script-src": "self", "object-src": "self", "worker-src": "self" } } |