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 |
电子邮箱 | [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\/*" ] } |