Improved BGA game info
Be able to see more information from a game in Board Game Arena using Board Game Geek information.
Что такое Improved BGA game info?
Improved BGA game info - это расширение Chrome, разработанное Thamara Andrade, и его основная функция - "Be able to see more information from a game in Board Game Arena using Board Game Geek information.".
Снимки экрана расширения
Скачать файл CRX расширения Improved BGA game info
Скачайте файлы расширений Improved BGA game info в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This is a browser extension that will display more information about a given game when visiting its page on Board Game Arena. This includes the weigth, rating, ranking and also the the category and mechanisms of the game. You'll also have a link to quickly look into the game in Board Game Geek. All information about a game is sourced from Board Game Geek.
Основная информация о расширении
Название | Improved BGA game info |
ID | hihdoablflnlippakmimnjacpcfpbdni |
Официальный URL | https://chromewebstore.google.com/detail/improved-bga-game-info/hihdoablflnlippakmimnjacpcfpbdni |
Описание | Be able to see more information from a game in Board Game Arena using Board Game Geek information. |
Размер файла | 15.48 KB |
Количество установок | 168 |
Текущая Версия | 1.0.0 |
Последнее Обновление | 2021-10-18 |
Дата публикации | 2021-10-18 |
Рейтинг | 3.00/5 Всего 1 оценок |
Разработчик | Thamara Andrade |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/thamara/improved-bga-game-info-extension |
URL страницы помощи | https://github.com/thamara/improved-bga-game-info-extension/issues |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Improved BGA game info", "description": "Be able to see more information from a game in Board Game Arena using Board Game Geek information.", "version": "1.0.0", "manifest_version": 2, "icons": { "16": "icons\/extension_toolbar_icon16.png", "32": "icons\/extension_toolbar_icon32.png", "48": "icons\/extension_toolbar_icon48.png", "128": "icons\/extension_toolbar_icon128.png" }, "permissions": [ "https:\/\/boardgamearena.com\/gamepanel*", "https:\/\/www.boardgamegeek.com\/xmlapi2\/*", "webNavigation" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "css": [ "styles.css" ], "js": [ "content.js" ], "matches": [ "https:\/\/boardgamearena.com\/gamepanel*" ], "run_at": "document_end" } ] } |