Retain me not
Free your FFXIV inventory up
What is Retain me not?
Retain me not is a Chrome extension developed by Giuliano Riccio, and its main feature is "Free your FFXIV inventory up".
Extension Screenshots
Download Retain me not Extension CRX File
Download Retain me not extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Additional information is added to your lodestone retainer's inventory page to help you reduce the number of occupied inventory slots.
Extension Basic Information
Name | |
ID | elcalhmjjbiopoblmomhgelkfafpgogb |
Official URL | https://chrome.google.com/webstore/detail/retain-me-not/elcalhmjjbiopoblmomhgelkfafpgogb |
Description | Free your FFXIV inventory up |
File Size | 65.67 KB |
Installation Count | 2,982 |
Current Version | 1.5.0 |
Last Updated | 2019-01-22 |
Publish Date | 2019-01-22 |
Rating | 4.94/5 Total 16 Ratings |
Developer | Giuliano Riccio |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/giulianoriccio/retain-me-not |
Help Page URL | https://github.com/giulianoriccio/retain-me-not/issues |
Supported Languages | 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\/*" ] } |