FL Masquerade
Manage multiple identities in "Fallen London" browser game.
FL Masqueradeคืออะไร?
FL Masquerade เป็นส่วนขยายของ Chrome ที่พัฒนาโดย lensvol และคุณลักษณะหลักของมันคือ "Manage multiple identities in "Fallen London" browser game."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย FL Masquerade
ดาวน์โหลดไฟล์ส่วนขยาย FL Masquerade ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension will let you switch between multiple different "alts" from inside the game itself, removing the need to constantly keep open a bevy of tabs/windows for them.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | FL Masquerade |
ID | njkbfdpmpeoppdmgenflgjfnngnfkhbe |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/fl-masquerade/njkbfdpmpeoppdmgenflgjfnngnfkhbe |
คำอธิบาย | Manage multiple identities in "Fallen London" browser game. |
ขนาดไฟล์ | 21.06 KB |
จำนวนการติดตั้ง | 145 |
เวอร์ชันปัจจุบัน | 1.1.1 |
อัปเดตครั้งล่าสุด | 2022-06-04 |
วันที่เผยแพร่ | 2022-05-24 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | lensvol |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/lensvol/fl-masquerade |
URL หน้าช่วยเหลือ | https://github.com/lensvol/fl-masquerade |
ภาษาที่รองรับ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "FL Masquerade", "description": "Manage multiple identities in \"Fallen London\" browser game.", "version": "1.1.1", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "tabs", "storage", "alarms", "https:\/\/api.fallenlondon.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*.fallenlondon.com\/*" ], "js": [ "content.js" ], "css": [], "run_at": "document_start" } ], "web_accessible_resources": [ { "resources": [ "inject.js" ], "matches": [ "https:\/\/*.fallenlondon.com\/*" ] } ], "icons": { "16": "\/images\/masks-icon-16.png", "32": "\/images\/masks-icon-32.png", "48": "\/images\/masks-icon-48.png", "128": "\/images\/masks-icon-128.png" } } |