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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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\/*" ] } |