Retain me not
Free your FFXIV inventory up
Что такое Retain me not?
Retain me not - это расширение Chrome, разработанное Giuliano Riccio, и его основная функция - "Free your FFXIV inventory up".
Снимки экрана расширения
Скачать файл CRX расширения Retain me not
Скачайте файлы расширений Retain me not в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Additional information is added to your lodestone retainer's inventory page to help you reduce the number of occupied inventory slots.
Основная информация о расширении
Название | |
ID | elcalhmjjbiopoblmomhgelkfafpgogb |
Официальный URL | https://chrome.google.com/webstore/detail/retain-me-not/elcalhmjjbiopoblmomhgelkfafpgogb |
Описание | Free your FFXIV inventory up |
Размер файла | 65.67 KB |
Количество установок | 2,982 |
Текущая Версия | 1.5.0 |
Последнее Обновление | 2019-01-22 |
Дата публикации | 2019-01-22 |
Рейтинг | 4.94/5 Всего 16 оценок |
Разработчик | Giuliano Riccio |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/giulianoriccio/retain-me-not |
URL страницы помощи | https://github.com/giulianoriccio/retain-me-not/issues |
Поддерживаемые языки | 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\/*" ] } |