Utopia Enhancer
Provides an enhanced interface for the browser RPG Utopia. Buildings calculator, attack target finder and more.
Что такое Utopia Enhancer?
Utopia Enhancer - это расширение Chrome, разработанное Kris Engstrom, и его основная функция - "Provides an enhanced interface for the browser RPG Utopia. Buildings calculator, attack target finder and more.".
Снимки экрана расширения
Скачать файл CRX расширения Utopia Enhancer
Скачайте файлы расширений Utopia Enhancer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Provides an enhanced interface for the browser RPG Utopia. Buildings calculator, attack calculator, science planner, target finder and more.
Основная информация о расширении
Название | Utopia Enhancer |
ID | joimfhbpfchagboicdemmdnfdijceabl |
Официальный URL | https://chromewebstore.google.com/detail/utopia-enhancer/joimfhbpfchagboicdemmdnfdijceabl |
Описание | Provides an enhanced interface for the browser RPG Utopia. Buildings calculator, attack target finder and more. |
Размер файла | 70.85 KB |
Количество установок | 406 |
Текущая Версия | 3.4.2 |
Последнее Обновление | 2019-05-10 |
Дата публикации | 2019-05-09 |
Рейтинг | 4.89/5 Всего 18 оценок |
Разработчик | Kris Engstrom |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Utopia Enhancer", "manifest_version": 2, "version": "3.4.2", "description": "Provides an enhanced interface for the browser RPG Utopia. Buildings calculator, attack target finder and more.", "permissions": [ "storage", "notifications", "alarms" ], "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/utopia-game.com\/wol\/game\/*", "*:\/\/utopia-game.com\/wol\/kingdom_forum\/*", "*:\/\/utopia-game.com\/wol\/war_forum\/*", "*:\/\/app.staging.public.utopia-game.com\/wol\/game\/*", "*:\/\/app.staging.public.utopia-game.com\/gen\/game\/*", "*:\/\/utopia-game.com\/wol\/sit\/game\/*" ], "exclude_matches": [ "*:\/\/utopia-game.com\/wol\/game\/kingdoms_dump*" ], "js": [ "js\/lib.min.js", "js\/ue.min.js" ] } ], "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "web_accessible_resources": [ "data\/*", "css\/*", "fonts\/*", "templates\/*" ], "options_ui": { "page": "templates\/options.html", "chrome_style": true } } |