fleetyards-sync
Browser Extension for syncing pledge data from https://robertsspaceindustries.com to https://fleetyards.net
Cos'è fleetyards-sync?
fleetyards-sync è un'estensione di Chrome sviluppata da https://fleetyards.net, e la sua funzione principale è "Browser Extension for syncing pledge data from https://robertsspaceindustries.com to https://fleetyards.net".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione fleetyards-sync
Scarica i file di estensione fleetyards-sync 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
Fleetyards Sync
The Fleetyards Sync Extension is a companion App for the Web Application https://fleetyards.net.
It allows the user to sync their pledge data on robertsspaceindustries.com with their account on fleetyards.net. For this it extracts the information on your RSI Hangar https://robertsspaceindustries.com/account/pledges and sends it to the Fleetyards App. The Fleetyards App will then parse the data and submit to the users account.
A Fleetyards.net account as well as an account on robertsspaceindustries.com is required to use this Extension. Informazioni di Base sull'Estensione
| Nome | |
| ID | glchfaleieoljcimjjkdkeifnejbcokg |
| URL Ufficiale | https://chromewebstore.google.com/detail/fleetyards-sync/glchfaleieoljcimjjkdkeifnejbcokg |
| Descrizione | Browser Extension for syncing pledge data from https://robertsspaceindustries.com to https://fleetyards.net |
| Dimensione del File | 185 KB |
| Conteggio Installazioni | 5,469 |
| Versione Corrente | 1.0.2 |
| Ultimo Aggiornamento | 2023-05-10 |
| Data di Pubblicazione | 2023-05-09 |
| Valutazione | 5.00/5 Totale 1 Valutazioni |
| Sviluppatore | https://fleetyards.net |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://fleetyards.net |
| URL della Pagina di Aiuto | https://fleetyards.net |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "fleetyards-sync",
"description": "Browser Extension for syncing pledge data from https:\/\/robertsspaceindustries.com to https:\/\/fleetyards.net",
"version": "1.0.2",
"content_scripts": [
{
"matches": [
"https:\/\/fleetyards.net\/*"
],
"js": [
"src\/content.js"
]
}
],
"manifest_version": 3,
"homepage_url": "https:\/\/fleetyards.net",
"permissions": [
"cookies"
],
"host_permissions": [
"https:\/\/robertsspaceindustries.com\/*"
],
"icons": {
"16": "icon\/16.png",
"32": "icon\/32.png",
"48": "icon\/48.png",
"96": "icon\/96.png",
"128": "icon\/128.png"
},
"background": {
"service_worker": "src\/background.js"
}
} | |