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"
}
} | |