FL Small Mercies
Set of small 'fixes' for Fallen London UI.
FL Small Mercies क्या है?
FL Small Mercies lensvol द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Set of small 'fixes' for Fallen London UI."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में FL Small Mercies एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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\/*" ] } ] } |