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 |
| Eメール | [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"
}
]
} | |