Retain me not
Free your FFXIV inventory up
Was ist Retain me not?
Retain me not ist eine Chrome-Erweiterung, die von Giuliano Riccio entwickelt wurde, und ihr Hauptmerkmal ist "Free your FFXIV inventory up".
Erweiterungsscreenshots
Retain me not-Erweiterungs-CRX-Datei herunterladen
Laden Sie Retain me not-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Additional information is added to your lodestone retainer's inventory page to help you reduce the number of occupied inventory slots.
Grundlegende Informationen zur Erweiterung
Name | |
ID | elcalhmjjbiopoblmomhgelkfafpgogb |
Offizielle URL | https://chrome.google.com/webstore/detail/retain-me-not/elcalhmjjbiopoblmomhgelkfafpgogb |
Beschreibung | Free your FFXIV inventory up |
Dateigröße | 65.67 KB |
Installationsanzahl | 2,982 |
Aktuelle Version | 1.5.0 |
Letztes Update | 2019-01-22 |
Veröffentlichungsdatum | 2019-01-22 |
Bewertung | 4.94/5 Insgesamt 16 Bewertungen |
Entwickler | Giuliano Riccio |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/giulianoriccio/retain-me-not |
Hilfeseite URL | https://github.com/giulianoriccio/retain-me-not/issues |
Unterstützte Sprachen | 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\/*" ] } |