FL Masquerade
Manage multiple identities in "Fallen London" browser game.
什麼是FL Masquerade?
FL Masquerade是由lensvol開發的Chrome擴展程式,該擴展的主要功能是“Manage multiple identities in "Fallen London" browser game.”。
擴展截圖
下載FL Masquerade擴展crx文件
下載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. 擴展基本資訊
| 名稱 | |
| ID | njkbfdpmpeoppdmgenflgjfnngnfkhbe |
| 官方網址 | 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"
}
} | |