FFLogstone
Add link to FFLogs in Lodestone Character page
什么是FFLogstone?
FFLogstone是由sheeva开发的Chrome扩展程序,该扩展的主要功能是“Add link to FFLogs in Lodestone Character page”。
扩展截图
下载FFLogstone扩展crx文件
下载FFLogstone扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Lodestoneのキャラクターページに当該キャラクターのFFLogsへのリンクを追加します。
- FFLogsのPublic API Keyが必要です。
- 入力したAPI Keyはブラウザ上に保存されます。
- 当該キャラクターを含む直近のログが公開されている場合のみボタンが表示されます。
Add link to FFLogs in Lodestone Character Page
- Requires FFLogs Public API Key to get character ID in FFLogs.
- Click icon to input.
- API Key will be saved on your browser (if you enabled chrome sync, this also sync)
- Available when the character included in recent report. 扩展基本信息
| 名称 | |
| ID | dmgamkpmnnphnhalhhabkdfajgdekhim |
| 官方URL | https://chromewebstore.google.com/detail/fflogstone/dmgamkpmnnphnhalhhabkdfajgdekhim |
| 简介 | Add link to FFLogs in Lodestone Character page |
| 文件大小 | 82.13 KB |
| 安装次数 | 476 |
| 当前版本 | 1.0.4 |
| 更新时间 | 2022-05-23 |
| 上架时间 | 2019-11-26 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | sheeva |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://blog.sheeva.me/entry/fflogstone-chrome-extension |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "FFLogstone",
"version": "1.0.4",
"manifest_version": 2,
"description": "Add link to FFLogs in Lodestone Character page",
"permissions": [
"storage"
],
"browser_action": {
"default_icon": "images\/icon.png",
"default_title": "Config FFLogstone",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.finalfantasyxiv.com\/lodestone\/character\/*"
],
"js": [
"js\/main.js"
],
"css": [
"css\/button.css"
],
"run_at": "document_end"
}
]
} | |