Halo 5 REQ Guide

Get REQ'd

Halo 5 REQ Guide란 무엇입니까?

Halo 5 REQ Guide은(는) cwachtman에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get REQ'd"입니다.

확장 프로그램 스크린샷

screenshot

Halo 5 REQ Guide 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension scans your inventory and identifies how many REQ packs are needed to complete your collection. It also calculates REQ points obtainable by selling items.

You will need to visit the pages for each REQ type in order for the extension to access the data.                    

확장 프로그램 기본 정보

이름 Halo 5 REQ Guide Halo 5 REQ Guide
ID dlhebbfjfhflbnbdpckijnagbhmknkkg
공식 URL https://chrome.google.com/webstore/detail/halo-5-req-guide/dlhebbfjfhflbnbdpckijnagbhmknkkg
설명 Get REQ'd
파일 크기 20.53 KB
설치 횟수 379
현재 버전 2.1
최근 업데이트 2016-02-12
출시 날짜 2016-02-12
평점 3.80/5 총 5 개의 평점
개발자 cwachtman
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Halo 5 REQ Guide",
    "description": "Get REQ'd",
    "version": "2.1",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.halowaypoint.com\/*\/halo-5-guardians\/xbox-one\/requisitions\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Halo 5 REQ Guide",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "manifest_version": 2
}