Retain me not
Free your FFXIV inventory up
Cos'è Retain me not?
Retain me not è un'estensione di Chrome sviluppata da Giuliano Riccio, e la sua funzione principale è "Free your FFXIV inventory up".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Retain me not
Scarica i file di estensione Retain me not in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Additional information is added to your lodestone retainer's inventory page to help you reduce the number of occupied inventory slots.
Informazioni di Base sull'Estensione
Nome | |
ID | elcalhmjjbiopoblmomhgelkfafpgogb |
URL Ufficiale | https://chrome.google.com/webstore/detail/retain-me-not/elcalhmjjbiopoblmomhgelkfafpgogb |
Descrizione | Free your FFXIV inventory up |
Dimensione del File | 65.67 KB |
Conteggio Installazioni | 2,982 |
Versione Corrente | 1.5.0 |
Ultimo Aggiornamento | 2019-01-22 |
Data di Pubblicazione | 2019-01-22 |
Valutazione | 4.94/5 Totale 16 Valutazioni |
Sviluppatore | Giuliano Riccio |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/giulianoriccio/retain-me-not |
URL della Pagina di Aiuto | https://github.com/giulianoriccio/retain-me-not/issues |
Lingue Supportate | 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\/*" ] } |