Hangar Export
Hangar Export
Cos'è Hangar Export?
Hangar Export è un'estensione di Chrome sviluppata da Hangar Link, e la sua funzione principale è "Hangar Export".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Hangar Export
Scarica i file di estensione Hangar Export in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Hangar Export |
ID | kflldafghoafgihnbpcfeanbnoijanpo |
URL Ufficiale | https://chromewebstore.google.com/detail/hangar-export/kflldafghoafgihnbpcfeanbnoijanpo |
Descrizione | Hangar Export |
Dimensione del File | 64.11 KB |
Conteggio Installazioni | 387 |
Versione Corrente | 0.5 |
Ultimo Aggiornamento | 2021-07-01 |
Data di Pubblicazione | 2021-06-11 |
Sviluppatore | Hangar Link |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/hangarlink/hangarexport |
URL della Pagina di Aiuto | https://github.com/hangarlink/hangarexport |
Lingue Supportate | 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": [] } } |