Retain me not
Free your FFXIV inventory up
Retain me notとは何ですか?
Retain me notはGiuliano Riccioによって開発されたChromeの拡張機能で、その主な機能は「Free your FFXIV inventory up」です。
拡張機能のスクリーンショット
Retain me not拡張機能のCRXファイルをダウンロード
Retain me not拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Additional information is added to your lodestone retainer's inventory page to help you reduce the number of occupied inventory slots.
拡張機能の基本情報
名前 | |
ID | elcalhmjjbiopoblmomhgelkfafpgogb |
公式URL | https://chrome.google.com/webstore/detail/retain-me-not/elcalhmjjbiopoblmomhgelkfafpgogb |
説明 | Free your FFXIV inventory up |
ファイルサイズ | 65.67 KB |
インストール数 | 2,982 |
現在のバージョン | 1.5.0 |
最終更新日 | 2019-01-22 |
公開日 | 2019-01-22 |
評価 | 4.94/5 合計 16 レビュー |
開発者 | Giuliano Riccio |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/giulianoriccio/retain-me-not |
ヘルプページのURL | https://github.com/giulianoriccio/retain-me-not/issues |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Retain me not", "description": "Free your FFXIV inventory up", "version": "1.5.0", "icons": { "128": "icon.png" }, "author": "Giuliano Riccio", "browser_action": { "default_icon": "icon.png" }, "minimum_chrome_version": "45", "options_ui": { "page": "options.html", "chrome_style": true }, "options_page": "options.html", "background": { "scripts": [ "jquery.js", "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/*.finalfantasyxiv.com\/lodestone\/character\/*\/retainer\/*\/baggage\/" ], "css": [ "style.css" ], "js": [ "jquery.js", "sanitizer.js", "content.js" ] } ], "content_security_policy": "script-src 'self' https:\/\/img.finalfantasyxiv.com; object-src 'self'", "permissions": [ "storage", "unlimitedStorage", "https:\/\/retainmenot.ffxivaddons.com\/*" ] } |