Chessable Tools
Add some nice to have functionality to your Chessable experience
Was ist Chessable Tools?
Chessable Tools ist eine Chrome-Erweiterung, die von James Peerless entwickelt wurde, und ihr Hauptmerkmal ist "Add some nice to have functionality to your Chessable experience".
Erweiterungsscreenshots
Chessable Tools-Erweiterungs-CRX-Datei herunterladen
Laden Sie Chessable Tools-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
Were you excited as I was about the Chessable feature to limit the move depth when learning new openings? As a beginner there's no need to learn openings 15 moves out because our opponents will most likely go out of book within the first handful of moves. After adjusting the move depth to a more reasonable level I quickly learned that many of the variations in a given book were identical given my limited move depth. This means I was stuck learning and reviewing the same opening variation over and over. This extension will allow you to automatically collapse + pause variations that are identical given your current move depth.
Grundlegende Informationen zur Erweiterung
Name | Chessable Tools |
ID | pafpnemecbohknopinlghmdidcodcfca |
Offizielle URL | https://chromewebstore.google.com/detail/chessable-tools/pafpnemecbohknopinlghmdidcodcfca |
Beschreibung | Add some nice to have functionality to your Chessable experience |
Dateigröße | 32.98 KB |
Installationsanzahl | 20 |
Aktuelle Version | 1.0.0 |
Letztes Update | 2018-05-28 |
Veröffentlichungsdatum | 2018-05-28 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | James Peerless |
Zahlungsart | free |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Chessable Tools", "description": "Add some nice to have functionality to your Chessable experience", "version": "1.0.0", "author": "James Peerless", "icons": { "16": "icons\/icon16.png", "24": "icons\/icon24.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png", "256": "icons\/icon256.png" }, "page_action": { "default_icon": { "16": "icons\/icon16.png", "24": "icons\/icon24.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png", "256": "icons\/icon256.png" }, "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.chessable.com\/*" ], "css": [ "chessable.css" ], "js": [ "content.js" ] } ], "web_accessible_resources": [ "chessable.js" ], "permissions": [ "activeTab", "declarativeContent" ] } |