HOTSLogs Extension
Small extension on www.hotslogs.com
Что такое HOTSLogs Extension?
HOTSLogs Extension - это расширение Chrome, разработанное ahri, и его основная функция - "Small extension on www.hotslogs.com".
Снимки экрана расширения
Скачать файл CRX расширения HOTSLogs Extension
Скачайте файлы расширений HOTSLogs Extension в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
An extension of www.hotslogs.com
Currently just adds wins/losses into "Games Played" cells, for convenience.
Optionally colors hero rows in tables by hero subrole - if that setting is set into options. Основная информация о расширении
| Название | |
| ID | ncmfokmnclmedcfbbmaloocmncmopphf |
| Официальный URL | https://chromewebstore.google.com/detail/hotslogs-extension/ncmfokmnclmedcfbbmaloocmncmopphf |
| Описание | Small extension on www.hotslogs.com |
| Размер файла | 18.64 KB |
| Количество установок | 169 |
| Текущая Версия | 0.3.11 |
| Последнее Обновление | 2017-04-09 |
| Дата публикации | 2017-04-09 |
| Рейтинг | 4.88/5 Всего 8 оценок |
| Разработчик | ahri |
| Тип оплаты | free |
| Поддерживаемые языки | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "HOTSLogs Extension",
"manifest_version": 2,
"version": "0.3.11",
"author": "ahri",
"description": "Small extension on www.hotslogs.com",
"browser_action": {
"default_icon": "icon.png"
},
"icons": {
"128": "icon.png"
},
"background": {
"scripts": [
"background.js"
]
},
"options_page": "options.html",
"permissions": [
"https:\/\/www.hotslogs.com\/Player\/Profile?PlayerID=*",
"storage"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.hotslogs.com\/Player\/Profile?PlayerID=*"
],
"js": [
"common.js",
"hero_roles.js",
"contentscript.js",
"favorite_heroes.js",
"win_rate_stats.js"
]
}
]
} | |