Hangar Export
Hangar Export
什么是Hangar Export?
Hangar Export是由Hangar Link开发的Chrome扩展程序,该扩展的主要功能是“Hangar Export”。
扩展截图
下载Hangar Export扩展crx文件
下载Hangar Export扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This is an extension that helps you get your data from your Star Citizen Hangar on https://robertsspaceindustries.com Download your RSI Pledge and Buyback data into JSON and CSV files. The JSON file can be used by https://hangar.link 扩展基本信息
| 名称 | |
| ID | kflldafghoafgihnbpcfeanbnoijanpo |
| 官方URL | https://chromewebstore.google.com/detail/hangar-export/kflldafghoafgihnbpcfeanbnoijanpo |
| 简介 | Hangar Export |
| 文件大小 | 64.11 KB |
| 安装次数 | 387 |
| 当前版本 | 0.5 |
| 更新时间 | 2021-07-01 |
| 上架时间 | 2021-06-11 |
| 开发者 | Hangar Link |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/hangarlink/hangarexport |
| 帮助页面URL | https://github.com/hangarlink/hangarexport |
| 支持的语言 | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Hangar Export ",
"version": "0.5",
"short_name": "Hangar Export",
"description": "Hangar Export",
"browser_action": {
"default_icon": "images\/icon.png",
"default_popup": "html\/popup.html",
"default_title": "Hangar Export"
},
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"content_scripts": [
{
"run_at": "document_idle",
"matches": [
"*:\/\/robertsspaceindustries.com\/*"
],
"js": [
"scripts\/content.js"
]
}
],
"web_accessible_resources": [],
"permissions": [
"storage",
"*:\/\/robertsspaceindustries.com\/*"
],
"background": {
"scripts": []
}
} | |