fleetyards-sync
Browser Extension for syncing pledge data from https://robertsspaceindustries.com to https://fleetyards.net
O que é fleetyards-sync?
fleetyards-sync é uma extensão do Chrome desenvolvida por https://fleetyards.net, e sua principal característica é "Browser Extension for syncing pledge data from https://robertsspaceindustries.com to https://fleetyards.net".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão fleetyards-sync
Baixe arquivos de extensão fleetyards-sync no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | fleetyards-sync |
ID | glchfaleieoljcimjjkdkeifnejbcokg |
URL Oficial | https://chromewebstore.google.com/detail/fleetyards-sync/glchfaleieoljcimjjkdkeifnejbcokg |
Descrição | Browser Extension for syncing pledge data from https://robertsspaceindustries.com to https://fleetyards.net |
Tamanho do Arquivo | 185 KB |
Contagem de Instalações | 5,469 |
Versão Atual | 1.0.2 |
Última Atualização | 2023-05-10 |
Data de Publicação | 2023-05-09 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | https://fleetyards.net |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://fleetyards.net |
URL da Página de Ajuda | https://fleetyards.net |
Idiomas Suportados | 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" } } |