Hangar Export
Hangar Export
Wat is Hangar Export?
Hangar Export is een Chrome-extensie ontwikkeld door Hangar Link, en de belangrijkste functie is "Hangar Export".
Extensie Screenshots
Download het CRX-bestand van de extensie Hangar Export
Download Hangar Export-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 Basisinformatie over de Extensie
| Naam | |
| ID | kflldafghoafgihnbpcfeanbnoijanpo |
| Officiële URL | https://chromewebstore.google.com/detail/hangar-export/kflldafghoafgihnbpcfeanbnoijanpo |
| Beschrijving | Hangar Export |
| Bestandsgrootte | 64.11 KB |
| Aantal Installaties | 387 |
| Huidige Versie | 0.5 |
| Laatst Bijgewerkt | 2021-07-01 |
| Publicatiedatum | 2021-06-11 |
| Ontwikkelaar | Hangar Link |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/hangarlink/hangarexport |
| Help Pagina-URL | https://github.com/hangarlink/hangarexport |
| Ondersteunde Talen | 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": []
}
} | |