Retain me not
Free your FFXIV inventory up
O que é Retain me not?
Retain me not é uma extensão do Chrome desenvolvida por Giuliano Riccio, e sua principal característica é "Free your FFXIV inventory up".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Retain me not
Baixe arquivos de extensão Retain me not no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Additional information is added to your lodestone retainer's inventory page to help you reduce the number of occupied inventory slots.
Informações Básicas da Extensão
Nome | |
ID | elcalhmjjbiopoblmomhgelkfafpgogb |
URL Oficial | https://chrome.google.com/webstore/detail/retain-me-not/elcalhmjjbiopoblmomhgelkfafpgogb |
Descrição | Free your FFXIV inventory up |
Tamanho do Arquivo | 65.67 KB |
Contagem de Instalações | 2,982 |
Versão Atual | 1.5.0 |
Última Atualização | 2019-01-22 |
Data de Publicação | 2019-01-22 |
Classificação | 4.94/5 Total de 16 Avaliações |
Desenvolvedor | Giuliano Riccio |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/giulianoriccio/retain-me-not |
URL da Página de Ajuda | https://github.com/giulianoriccio/retain-me-not/issues |
Idiomas Suportados | 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\/*" ] } |