Battletag for Battlelog™
Adds a right click menu to all server join buttons, where you can either type in a new tag or select one of the platoons you're in.
Что такое Battletag for Battlelog™?
Battletag for Battlelog™ - это расширение Chrome, разработанное Alec Mev, и его основная функция - "Adds a right click menu to all server join buttons, where you can either type in a new tag or select one of the platoons you're in.".
Снимки экрана расширения
Скачать файл CRX расширения Battletag for Battlelog™
Скачайте файлы расширений Battletag for Battlelog™ в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Displays your current clan tag on every server join button. A right click opens a menu, where you can either type in a new tag, or just select a platoon you want to represent - both your tag and emblem will be updated accordingly, and the platoon will be set as active.
For Battlefield 4™ Battlelog™ only.
Tinker with the source code on GitHub:
http://bit.ly/1fVZg7y
Buy me some ice cream via PayPal:
http://bit.ly/1eN7Sxx Основная информация о расширении
| Название | |
| ID | ckdomikkinngpfpodjjannnbojbembhj |
| Официальный URL | https://chromewebstore.google.com/detail/battletag-for-battlelog/ckdomikkinngpfpodjjannnbojbembhj |
| Описание | Adds a right click menu to all server join buttons, where you can either type in a new tag or select one of the platoons you're in. |
| Размер файла | 26.02 KB |
| Количество установок | 174 |
| Текущая Версия | 1.1.2 |
| Последнее Обновление | 2014-04-10 |
| Дата публикации | 2014-04-10 |
| Рейтинг | 4.67/5 Всего 9 оценок |
| Разработчик | Alec Mev |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/jeremejevs/battletag |
| URL страницы помощи | https://github.com/jeremejevs/battletag/issues |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"version": "1.1.2",
"icons": {
"48": "icon-48.png",
"16": "icon-16.png",
"128": "icon-128.png"
},
"name": "Battletag for Battlelog\u2122",
"content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
"manifest_version": 2,
"content_scripts": [
{
"run_at": "document_end",
"js": [
"inject.js"
],
"matches": [
"*:\/\/battlelog.battlefield.com\/bf4\/*"
],
"all_frames": true
}
],
"description": "Adds a right click menu to all server join buttons, where you can either type in a new tag or select one of the platoons you're in.",
"short_name": "Battletag",
"web_accessible_resources": [
"battletag.js",
"battletag.css"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
}
} | |