Retain me not
Free your FFXIV inventory up
Hvad er Retain me not?
Retain me not er en Chrome-udvidelse udviklet af Giuliano Riccio, og dens hovedfunktion er "Free your FFXIV inventory up".
Udvidelsesskærmbilleder
Download Retain me not-udvidelses-CRX-fil
Download Retain me not-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Additional information is added to your lodestone retainer's inventory page to help you reduce the number of occupied inventory slots.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | elcalhmjjbiopoblmomhgelkfafpgogb |
Officiel URL | https://chrome.google.com/webstore/detail/retain-me-not/elcalhmjjbiopoblmomhgelkfafpgogb |
Beskrivelse | Free your FFXIV inventory up |
Filstørrelse | 65.67 KB |
Antal Installationer | 2,982 |
Nuværende Version | 1.5.0 |
Senest Opdateret | 2019-01-22 |
Udgivelsesdato | 2019-01-22 |
Bedømmelse | 4.94/5 Samlet 16 Bedømmelser |
Udvikler | Giuliano Riccio |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/giulianoriccio/retain-me-not |
Hjælpeside-URL | https://github.com/giulianoriccio/retain-me-not/issues |
Understøttede Sprog | 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\/*" ] } |