Better CML
Adds DMP and custom EHP formula to CML
Was ist Better CML?
Better CML ist eine Chrome-Erweiterung, die von H8 / Nmzscape entwickelt wurde, und ihr Hauptmerkmal ist "Adds DMP and custom EHP formula to CML".
Erweiterungsscreenshots
Better CML-Erweiterungs-CRX-Datei herunterladen
Laden Sie Better CML-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Better CML |
ID | dljejlijadlnpbohhfneklgolgdoipbd |
Offizielle URL | https://chromewebstore.google.com/detail/better-cml/dljejlijadlnpbohhfneklgolgdoipbd |
Beschreibung | Adds DMP and custom EHP formula to CML |
Dateigröße | 69.18 KB |
Installationsanzahl | 9 |
Aktuelle Version | 1.2.2 |
Letztes Update | 2017-10-21 |
Veröffentlichungsdatum | 2017-10-21 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | H8 / Nmzscape |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |