Retain me not
Free your FFXIV inventory up
Vad är Retain me not?
Retain me not är en Chrome-tillägg utvecklad av Giuliano Riccio, och dess huvudfunktion är "Free your FFXIV inventory up".
Tilläggsskärmbilder
Ladda ner Retain me not-förlängningens CRX-fil
Ladda ner Retain me not-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Additional information is added to your lodestone retainer's inventory page to help you reduce the number of occupied inventory slots.
Grundläggande Information om Tillägg
Namn | |
ID | elcalhmjjbiopoblmomhgelkfafpgogb |
Officiell webbadress | https://chrome.google.com/webstore/detail/retain-me-not/elcalhmjjbiopoblmomhgelkfafpgogb |
Beskrivning | Free your FFXIV inventory up |
Filstorlek | 65.67 KB |
Antal Installationer | 2,982 |
Aktuell Version | 1.5.0 |
Senast Uppdaterad | 2019-01-22 |
Publiceringsdatum | 2019-01-22 |
Betyg | 4.94/5 Totalt 16 Betyg |
Utvecklare | Giuliano Riccio |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/giulianoriccio/retain-me-not |
Hjälpsida URL | https://github.com/giulianoriccio/retain-me-not/issues |
Stödda Språk | 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\/*" ] } |