fleetyards-sync
Browser Extension for syncing pledge data from https://robertsspaceindustries.com to https://fleetyards.net
Что такое fleetyards-sync?
fleetyards-sync - это расширение Chrome, разработанное https://fleetyards.net, и его основная функция - "Browser Extension for syncing pledge data from https://robertsspaceindustries.com to https://fleetyards.net".
Снимки экрана расширения
Скачать файл CRX расширения fleetyards-sync
Скачайте файлы расширений fleetyards-sync в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
                        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.                     Основная информация о расширении
| Название |   |  
| ID | glchfaleieoljcimjjkdkeifnejbcokg | 
| Официальный URL | https://chromewebstore.google.com/detail/fleetyards-sync/glchfaleieoljcimjjkdkeifnejbcokg | 
| Описание | Browser Extension for syncing pledge data from https://robertsspaceindustries.com to https://fleetyards.net | 
| Размер файла | 185 KB | 
| Количество установок | 5,469 | 
| Текущая Версия | 1.0.2 | 
| Последнее Обновление | 2023-05-10 | 
| Дата публикации | 2023-05-09 | 
| Рейтинг | 5.00/5 Всего 1 оценок | 
| Разработчик | https://fleetyards.net | 
| Электронная почта | [email protected] | 
| Тип оплаты | free | 
| Официальный сайт расширения | https://fleetyards.net | 
| URL страницы помощи | https://fleetyards.net | 
| Поддерживаемые языки | 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"
    }
}  |  |