Ogame Fleet Counter
No more asking your friends to spy and tell you your fleet points!
Что такое Ogame Fleet Counter?
Ogame Fleet Counter - это расширение Chrome, разработанное joshepMad, и его основная функция - "No more asking your friends to spy and tell you your fleet points!".
Снимки экрана расширения
Скачать файл CRX расширения Ogame Fleet Counter
Скачайте файлы расширений Ogame Fleet Counter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension let's you see your fleet points on each planet or moon in Ogame.
Основная информация о расширении
Название | Ogame Fleet Counter |
ID | dfkfmopjlbomagboeikibfocijcflbei |
Официальный URL | https://chromewebstore.google.com/detail/ogame-fleet-counter/dfkfmopjlbomagboeikibfocijcflbei |
Описание | No more asking your friends to spy and tell you your fleet points! |
Размер файла | 36.27 KB |
Количество установок | 1,315 |
Текущая Версия | 4.6 |
Последнее Обновление | 2022-12-11 |
Дата публикации | 2020-04-28 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | joshepMad |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы политики конфиденциальности | https://www.privacypolicies.com/live/a133a0e4-40f6-432a-b246-4ba64a8b5303 |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Ogame Fleet Counter", "short_name": "OFC", "description": "No more asking your friends to spy and tell you your fleet points!", "version": "4.6", "icons": { "16": "16.png", "48": "48.png", "128": "128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.ogame.gameforge.com\/game\/index.php?page=ingame&component=shipyard*" ], "js": [ "js\/jquery.js", "js\/content.js" ], "run_at": "document_end" }, { "css": [ "skin\/style.css" ], "js": [ "js\/fleet.js" ], "matches": [ "https:\/\/*.ogame.gameforge.com\/game\/index.php?page=highscore*" ], "run_at": "document_end" } ], "web_accessible_resources": [ { "resources": [ "js\/toInject.js" ], "matches": [ "https:\/\/*\/*" ] } ] } |