Retain me not

Free your FFXIV inventory up

Co to jest Retain me not?

Retain me not to rozszerzenie Chrome opracowane przez Giuliano Riccio, a jego główną funkcją jest „Free your FFXIV inventory up”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Retain me not

Pobierz pliki rozszerzeń Retain me not w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Additional information is added to your lodestone retainer's inventory page to help you reduce the number of occupied inventory slots.                    

Podstawowe informacje o rozszerzeniu

Nazwa Retain me not Retain me not
ID elcalhmjjbiopoblmomhgelkfafpgogb
Oficjalny URL https://chrome.google.com/webstore/detail/retain-me-not/elcalhmjjbiopoblmomhgelkfafpgogb
Opis Free your FFXIV inventory up
Rozmiar pliku 65.67 KB
Liczba instalacji 2,982
Aktualna Wersja 1.5.0
Ostatnia Aktualizacja 2019-01-22
Data Publikacji 2019-01-22
Ocena 4.94/5 Łącznie 16 Oceny
Deweloper Giuliano Riccio
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/giulianoriccio/retain-me-not
Adres URL Strony Pomocy https://github.com/giulianoriccio/retain-me-not/issues
Obsługiwane Języki 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\/*"
    ]
}