Hangar Link Connect

Hangar Link Connect

Hangar Link Connect란 무엇입니까?

Hangar Link Connect은(는) https://hangar.link에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hangar Link Connect"입니다.

확장 프로그램 스크린샷

screenshot

Hangar Link Connect 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Hangar Link Connect is a companion extension for the Web Application https://hangar.link

This is an extension that helps you get your data from your Star Citizen Hangar on https://robertsspaceindustries.com and view your data on https://hangar.link.

Previously the only way to access your data was to use the Hangar Export extension to retrieve your data from your hangar on https://robertsspaceindustries.com, save your data to JSON format and then manually import it into https://hangar.link.

This extension allows https://hangar.link to query your ship data without the inconvenience of exporting and importing files. It allows https://hangar.link to query your Star Citizen pledge data including Price Data, Pledge Data and Buyback data allowing it to present the data within the https://hangar.link app where you can search, filter, and display your data.

This is a 'quality of life' alternative to the manual file export/import mechanism of the existing extension Hangar Export.                    

확장 프로그램 기본 정보

이름 Hangar Link Connect Hangar Link Connect
ID faogejfedelmehbgclhooomkocdbdoig
공식 URL https://chromewebstore.google.com/detail/hangar-link-connect/faogejfedelmehbgclhooomkocdbdoig
설명 Hangar Link Connect
파일 크기 59.77 KB
설치 횟수 10,000
현재 버전 1.5
최근 업데이트 2022-07-10
출시 날짜 2021-10-11
평점 5.00/5 총 4 개의 평점
개발자 https://hangar.link
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://hangar.link
도움말 페이지 URL https://discord.gg/MWhvRHSNVU
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hangar Link Connect",
    "version": "1.5",
    "short_name": "Hangar Link Connect",
    "description": "Hangar Link Connect",
    "homepage_url": "https:\/\/hangar.link",
    "permissions": [
        "https:\/\/robertsspaceindustries.com\/*",
        "cookies"
    ],
    "web_accessible_resources": [],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/hangar.link\/*"
            ],
            "js": [
                "scripts\/content.js"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/hangar.link\/*"
        ]
    },
    "browser_action": {
        "default_title": "Hangar Link",
        "default_icon": {
            "16": "images\/icon16.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "content_security_policy": "script-src 'self'; object-src 'self'"
}