fleetyards-sync

Browser Extension for syncing pledge data from https://robertsspaceindustries.com to https://fleetyards.net

¿Qué es fleetyards-sync?

fleetyards-sync es una extensión de Chrome desarrollada por https://fleetyards.net, y su función principal es "Browser Extension for syncing pledge data from https://robertsspaceindustries.com to https://fleetyards.net".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión fleetyards-sync

Descarga archivos de extensión fleetyards-sync en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre fleetyards-sync fleetyards-sync
ID glchfaleieoljcimjjkdkeifnejbcokg
URL Oficial https://chromewebstore.google.com/detail/fleetyards-sync/glchfaleieoljcimjjkdkeifnejbcokg
Descripción Browser Extension for syncing pledge data from https://robertsspaceindustries.com to https://fleetyards.net
Tamaño del Archivo 185 KB
Cantidad de Instalaciones 5,469
Versión Actual 1.0.2
Última Actualización 2023-05-10
Fecha de Publicación 2023-05-09
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador https://fleetyards.net
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://fleetyards.net
URL de la Página de Ayuda https://fleetyards.net
Idiomas Soportados 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"
    }
}