Retain me not
Free your FFXIV inventory up
什麼是Retain me not?
Retain me not是由Giuliano Riccio開發的Chrome擴展程式,該擴展的主要功能是“Free your FFXIV inventory up”。
擴展截圖
下載Retain me not擴展crx文件
下載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 |
官方網址 | 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\/*" ] } |