fleetyards-sync
Browser Extension for syncing pledge data from https://robertsspaceindustries.com to https://fleetyards.net
Qu'est-ce que fleetyards-sync ?
fleetyards-sync est une extension Chrome développée par https://fleetyards.net, et sa fonction principale est "Browser Extension for syncing pledge data from https://robertsspaceindustries.com to https://fleetyards.net".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension fleetyards-sync
Téléchargez les fichiers d'extension fleetyards-sync au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | fleetyards-sync |
ID | glchfaleieoljcimjjkdkeifnejbcokg |
URL Officiel | https://chromewebstore.google.com/detail/fleetyards-sync/glchfaleieoljcimjjkdkeifnejbcokg |
Description | Browser Extension for syncing pledge data from https://robertsspaceindustries.com to https://fleetyards.net |
Taille du Fichier | 185 KB |
Nombre d'Installations | 5,469 |
Version Actuelle | 1.0.2 |
Dernière Mise à Jour | 2023-05-10 |
Date de Publication | 2023-05-09 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | https://fleetyards.net |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://fleetyards.net |
URL de la Page d'Aide | https://fleetyards.net |
Langues Prises en Charge | 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" } } |