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™은(는) Alec Mev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "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™ 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | Battletag for Battlelog™ |
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 } } |