Slash Diablo Tools
Adds a save button the slashdiablo's armory. Maybe someday more to come...
Slash Diablo Tools란 무엇입니까?
Slash Diablo Tools은(는) dschu012에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a save button the slashdiablo's armory. Maybe someday more to come..."입니다.
확장 프로그램 스크린샷
Slash Diablo Tools 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Add additional functionality to the slashdiablo armory: * Save the current armory character you are viewing as a d2s to be used in game. * Export missing items from your grail to clipboard, to easily paste in your BH item filter.
확장 프로그램 기본 정보
이름 | Slash Diablo Tools |
ID | hfbigecinjgkbmdldhgogmdjfblpkagp |
공식 URL | https://chromewebstore.google.com/detail/slash-diablo-tools/hfbigecinjgkbmdldhgogmdjfblpkagp |
설명 | Adds a save button the slashdiablo's armory. Maybe someday more to come... |
파일 크기 | 210 KB |
설치 횟수 | 115 |
현재 버전 | 0.11 |
최근 업데이트 | 2021-08-01 |
출시 날짜 | 2020-05-03 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | dschu012 |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/dschu012/slashdiablo-chrome-extension/ |
도움말 페이지 URL | https://github.com/dschu012/slashdiablo-chrome-extension/issues |
개인정보 보호 정책 페이지 URL | https://github.com/dschu012/slashdiablo-chrome-extension/blob/master/PRIVACY.md |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Slash Diablo Tools", "version": "0.11", "description": "Adds a save button the slashdiablo's armory. Maybe someday more to come...", "manifest_version": 2, "icons": { "16": "img\/16.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.slashdiablo.net\/*", "https:\/\/*.slashgaming.net\/*" ], "js": [ "start.js" ], "permissions": [ "storage", "clipboardWrite" ], "run_at": "document_end" } ], "web_accessible_resources": [ "css\/styles.css", "lib\/jquery-3.3.1.min.js", "lib\/constants.bundle.min.js", "lib\/d2s.bundle.min.js", "armory.js", "grail.js" ], "permissions": [ "storage" ], "options_ui": { "page": "options.html", "open_in_tab": false } } |