FL Small Mercies
Set of small 'fixes' for Fallen London UI.
FL Small Merciesคืออะไร?
FL Small Mercies เป็นส่วนขยายของ Chrome ที่พัฒนาโดย lensvol และคุณลักษณะหลักของมันคือ "Set of small 'fixes' for Fallen London UI."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย FL Small Mercies
ดาวน์โหลดไฟล์ส่วนขยาย FL Small Mercies ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension introduces a set of small "fixers" for Fallen London UI intended to correct small deficiencies (as perceived by me, extension's author) in it. Any of the fixers can be enabled or disabled via a new "Extensions" section on the Account page.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | FL Small Mercies |
ID | efcjeepmkepahpaodagjlioagpganblf |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/fl-small-mercies/efcjeepmkepahpaodagjlioagpganblf |
คำอธิบาย | Set of small 'fixes' for Fallen London UI. |
ขนาดไฟล์ | 127 KB |
จำนวนการติดตั้ง | 333 |
เวอร์ชันปัจจุบัน | 3.0.9 |
อัปเดตครั้งล่าสุด | 2024-02-13 |
วันที่เผยแพร่ | 2022-08-03 |
คะแนน | 5.00/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | lensvol |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/lensvol/fl-small-mercies |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "FL Small Mercies", "description": "Set of small 'fixes' for Fallen London UI.", "version": "3.0.9", "manifest_version": 3, "permissions": [ "storage", "tabs" ], "background": { "service_worker": "dist\/background-bundle.js", "type": "module" }, "content_scripts": [ { "matches": [ "https:\/\/www.fallenlondon.com\/*" ], "css": [ "dist\/css\/extension.css" ], "js": [ "dist\/content-bundle.js" ], "run_at": "document_start" } ], "action": { "default_icon": { "16": "\/images\/fl-small-mercies-icon-16.png", "32": "\/images\/fl-small-mercies-icon-32.png", "48": "\/images\/fl-small-mercies-icon-48.png", "128": "\/images\/fl-small-mercies-icon-128.png" } }, "icons": { "16": "\/images\/fl-small-mercies-icon-16.png", "32": "\/images\/fl-small-mercies-icon-32.png", "48": "\/images\/fl-small-mercies-icon-48.png", "128": "\/images\/fl-small-mercies-icon-128.png" }, "web_accessible_resources": [ { "resources": [ "dist\/*", "src\/*" ], "matches": [ "https:\/\/www.fallenlondon.com\/*" ] } ] } |