Hangar Link Connect
Hangar Link Connect
什么是Hangar Link Connect?
Hangar Link Connect是由https://hangar.link开发的Chrome扩展程序,该扩展的主要功能是“Hangar Link Connect”。
扩展截图
下载Hangar Link Connect扩展crx文件
下载Hangar Link Connect扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| 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'"
} | |