Better CML
Adds DMP and custom EHP formula to CML
Better CML란 무엇입니까?
Better CML은(는) H8 / Nmzscape에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds DMP and custom EHP formula to CML"입니다.
확장 프로그램 스크린샷
Better CML 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Adds a new column for DMP and Custom EHP formula to user pages. Custom EHP formula can be input in json format on the options page. See my tweet for an example of the json format to use. https://twitter.com/NMZscape/status/920412939747758080 For any clarification or questions contact @nmzscape on twitter. Change log: v1.1.1: Fixed an issue where plugin didn't work on https site. v1.2.0 Fixed formatting issue when showing custom EHP and records column. When clicking records or current top tab after clicking on a specific skill you are taken to the records or current top page for that skill. v1.2.1 fixed icons v1.2.2 css changes To Do: Implement ability to customize function parameter of EHP calculation Create a firefox version
확장 프로그램 기본 정보
이름 | Better CML |
ID | dljejlijadlnpbohhfneklgolgdoipbd |
공식 URL | https://chromewebstore.google.com/detail/better-cml/dljejlijadlnpbohhfneklgolgdoipbd |
설명 | Adds DMP and custom EHP formula to CML |
파일 크기 | 69.18 KB |
설치 횟수 | 9 |
현재 버전 | 1.2.2 |
최근 업데이트 | 2017-10-21 |
출시 날짜 | 2017-10-21 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | H8 / Nmzscape |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Better CML", "description": "Adds DMP and custom EHP formula to CML", "version": "1.2.2", "author": "H8", "browser_action": { "default_icon": { "19": "icon19.png", "38": "icon38.png" } }, "content_scripts": [ { "matches": [ "*:\/\/crystalmathlabs.com\/tracker\/track.php?player=*", "*:\/\/www.crystalmathlabs.com\/tracker\/track.php?player=*" ], "css": [ "stats.css" ], "js": [ "jquery-3.2.1.min.js", "cml.js", "better.js" ] }, { "matches": [ "*:\/\/crystalmathlabs.com\/*", "*:\/\/www.crystalmathlabs.com\/*" ], "css": [ "wrap.css" ] } ], "options_page": "options.html", "permissions": [ "activeTab", "storage" ], "web_accessible_resources": [ "stats.css" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |