Retain me not

Free your FFXIV inventory up

ما هو Retain me not؟

Retain me not هو إضافة Chrome تم تطويرها بواسطة Giuliano Riccio، والميزة الرئيسية لها هي "Free your FFXIV inventory up".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Retain me not

قم بتنزيل ملفات الامتداد Retain me not بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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

معلومات أساسية عن التمديد

الاسم Retain me not Retain me not
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
عنوان صفحة المساعدة 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\/*"
    ]
}