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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
| عنوان صفحة المساعدة | 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"
}
} | |