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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
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\/*"
    ]
}