OGame Tracker
This extension tracks information of the player and represents these graphically.
OGame Tracker란 무엇입니까?
OGame Tracker은(는) Wonkydonky에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension tracks information of the player and represents these graphically."입니다.
확장 프로그램 스크린샷
OGame Tracker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Tracks information about the player. Currently, results of expeditions, combats and debris field harvests are tracked. The data will only be stored locally.
확장 프로그램 기본 정보
이름 | OGame Tracker |
ID | gcebldjabjlagnnnjfodjgiddnonehnd |
공식 URL | https://chromewebstore.google.com/detail/ogame-tracker/gcebldjabjlagnnnjfodjgiddnonehnd |
설명 | This extension tracks information of the player and represents these graphically. |
파일 크기 | 39.69 MB |
설치 횟수 | 6,465 |
현재 버전 | 2024.2.23.19064 |
최근 업데이트 | 2024-02-23 |
출시 날짜 | 2021-08-27 |
평점 | 5.00/5 총 15 개의 평점 |
개발자 | Wonkydonky |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://discord.gg/MZE9FrCwRj |
지원되는 언어 | de,en,fr,da,es,hr,it,hu,pl,pt-BR,pt-PT,sl,cs,el,zh-TW |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "OGame Tracker", "description": "__MSG_appDesc__", "manifest_version": 3, "default_locale": "de", "version": "2024.2.23.19064", "icons": { "128": "icon128.png" }, "permissions": [ "storage", "unlimitedStorage" ], "host_permissions": [ "https:\/\/*.ogame.gameforge.com\/*" ], "web_accessible_resources": [ { "resources": [ "img\/*", "views\/*", "mdi\/*", "ogti\/*" ], "matches": [ "https:\/\/*.ogame.gameforge.com\/*" ] } ], "content_scripts": [ { "matches": [ "https:\/\/*.ogame.gameforge.com\/game\/*" ], "run_at": "document_start", "js": [ "content-scripts\/add-menu-item.js" ], "css": [ "content-scripts\/add-menu-item.css" ] }, { "matches": [ "https:\/\/*.ogame.gameforge.com\/game\/*" ], "run_at": "document_end", "js": [ "content-scripts\/add-notification-iframe.js" ], "css": [ "content-scripts\/add-notification-iframe.css" ] }, { "matches": [ "https:\/\/*.ogame.gameforge.com\/game\/*" ], "run_at": "document_start", "all_frames": true, "js": [ "content-scripts\/empire-tracking.js" ] }, { "matches": [ "https:\/\/*.ogame.gameforge.com\/game\/*" ], "run_at": "document_end", "js": [ "content-scripts\/generate-color-css-variables.js" ] }, { "matches": [ "https:\/\/*.ogame.gameforge.com\/game\/*" ], "run_at": "document_start", "css": [ "mdi\/style.chrome.css", "ogti\/style.chrome.css" ], "js": [ "content-scripts\/icons-everywhere.js" ] }, { "matches": [ "https:\/\/*.ogame.gameforge.com\/game\/*" ], "run_at": "document_start", "js": [ "content-scripts\/keep-service-worker-alive.js" ] }, { "matches": [ "https:\/\/*.ogame.gameforge.com\/game\/*" ], "run_at": "document_end", "js": [ "content-scripts\/message-tracking.js" ], "css": [ "content-scripts\/message-tracking.css" ] }, { "matches": [ "https:\/\/*.ogame.gameforge.com\/game\/*" ], "run_at": "document_start", "js": [ "content-scripts\/universe-and-account-tracking.js" ] } ], "background": { "service_worker": "service-worker.js" } } |