Anki Quick Adder
This extension provides the ability to create anki cards directly from Google Chrome on your Anki Desktop.
Was ist Anki Quick Adder?
Anki Quick Adder ist eine Chrome-Erweiterung, die von Ranjit Singh entwickelt wurde, und ihr Hauptmerkmal ist "This extension provides the ability to create anki cards directly from Google Chrome on your Anki Desktop.".
Erweiterungsscreenshots
Anki Quick Adder-Erweiterungs-CRX-Datei herunterladen
Laden Sie Anki Quick Adder-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
Welcome to Anki Quick Adder. This extension provides Ability to create anki cards directly from Google Chrome on your Anki Desktop. It includes an inline WYSIWYG editor and keyboard shortcuts for editing your notes before adding them to anki. Requirements You will require the following sofware to use the extension. 1) Anki 2) Anki Connect plugin This extension is currently in beta. so, bear the bugs with me :-) Please, report bugs at github. https://github.com/1nsp1r3rnzt/chrome-anki-quick-adder Changelog: 2.0.6 January 25 2020 -------------------- Fixed ankiConnect Cors problem. -------------------- 2.0.4 February 12, 2019 -------------------------------- Added sticky field for tags Added ability to add links in editor(Settings->in-line editor-> add Link button) -------------------------------- 2.0.3 August 5, 2018 Fixed duplicate tags in autoCompleteTags Array Fixed sending multiple tags on mainCard and dialogCard Fixed indexOf error for numbers only in deckName Added auto-complete of tags for EditCards and sanitization for tags Fixed Error when extension doesnot load data on first start. 2.0.2 july 21,2018 Fixed refresh decks button -------------------------------- 2.0.1 july 20, 2018 Fixed chromeMenu creation on extension update Fixed incorrect saveNote fields. -------------------------------- 2.0.0 added settings to show fav decks and models in chrome context menu. -------------------------------- 1.0.9 Fixed minor bugs -------------------------------- 1.0.8 Fixed notes not saving from shortcuts -------------------------------- 1.0.7 Fixed typebug error -------------------------------- 1.0.6 Fixed minor bugs -------------------------------- 1.0.5 added localNotes mode to save note without checking for anki. Version 1.0.4 - Tuesday, June 19th, 2018 - Ability to export and import your saved notes in extension. - fixed typeError bug on saving notes. - Quick icon to turn off global sticky fields. -------------------------------- Version 1.0.3 - Tuesday, June 19th, 2018 - Moved to local storage to save currentFields instead of sync -------------------------------- Version 1.0.2 - Tuesday, June 19th, 2018 Fixed Type Error --------------------- Version 1.0.1 - Monday, June 18th, 2018 Fixed bug for user who updated extension. -------------------------------------- Version 1.0.0 - Monday, June 18th, 2018 - Ability to save notes in Local Storage and sync later. (settings-> saveNotes) - Added ability to customize in-line editor buttons (settings-> In-Line editor Buttons) - Added sticky Fields. Click [S] icon and field data will persist after adding a note until you clear. - Mode to change field background theme to dark mode temporarily. - Fixed field deletion on noteType change. --------------------------------------- Version 0.0.9 - Sunday, June 10th, 2018 - Fixed bugs Version 0.0.8 - Sunday, June 10th, 2018 - Toggle between favourite decks or models (select more than one deck or model) [Open demo](https://imgur.com/a/o54jyFw) - Fixed cloze caret position while adding from shortcut. - Customizable shortcuts for decks, models, cloze and quickSubmit. ---------------------------------- Version 0.0.7 - Wednesday, June 7th, 2018 - card submission directly on shortcut instead of submission through pop-up. --------------------------------------- Version 0.0.6 - Wednesday, June 7th, 2018 -fixed settings bug for users who updated instead of installing it. Version 0.0.5 - Wednesday, June 6th, 2018 --------------------------------------- - shortcuts for: deck, model and Cloze - shortcuts for: adding selection to fields - Cache for: decks, models and tags - settings for: cleaning text - Settings for: submit timeout from chrome menu Version 0.0.4 - Sunday, June 3rd, 2018 --------------------------------------- - Fixed adding cards from context menu Version Changelog ------------------------------------------------- Version 0.0.3 - Saturday, June 3rd, 2018 ------------------------------------------------- - Fixed appendMode - Added setting to turn on debugging. ------------------------------------------------- Version 0.0.2 - Saturday, June 2nd, 2018 ------------------------------------------------ - Fixed note adding error on windows and mac ------------------------------------------------- Version 0.0.1 - Friday, June 1, 2018 ------------------------------------------------- - Released beta version -fixed deck selection for single decklist -fixed deck selection for modelList - parsed tags for autocomplete
Grundlegende Informationen zur Erweiterung
Name | Anki Quick Adder |
ID | gpbcbbajoagdgnokieocaplbhkiidmmb |
Offizielle URL | https://chromewebstore.google.com/detail/anki-quick-adder/gpbcbbajoagdgnokieocaplbhkiidmmb |
Beschreibung | This extension provides the ability to create anki cards directly from Google Chrome on your Anki Desktop. |
Dateigröße | 418 KB |
Installationsanzahl | 11,684 |
Aktuelle Version | 2.0.6 |
Letztes Update | 2020-01-30 |
Veröffentlichungsdatum | 2020-01-26 |
Bewertung | 4.20/5 Insgesamt 46 Bewertungen |
Entwickler | Ranjit Singh |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | http://codehealthy.com |
Hilfeseite URL | https://github.com/1nsp1r3rnzt/chrome-anki-quick-adder/issues |
URL der Datenschutzrichtlinien-Seite | https://codehealthy.com/terms |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Anki Quick Adder", "version": "2.0.6", "short_name": "Anki Adder", "description": "This extension provides the ability to create anki cards directly from Google Chrome on your Anki Desktop.", "background": { "scripts": [ "lib\/common\/js\/jquery-3.3.1.min.js", "eventPage.js" ], "persistent": false }, "permissions": [ "storage", "notifications", "contextMenus", "activeTab", "http:\/\/localhost\/" ], "browser_action": { "default_icon": "icon-64.png", "default_popup": "popup.html" }, "icons": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-64.png", "128": "icon-128.png" }, "web_accessible_resources": [ "icon-64.png", "src\/importFile.js", "src\/editCardModal.js", "src\/editCardModel.css", "popup.html#tabs-2" ], "options_page": "popup.html#tabs-2", "commands": { "add-to-first-field": { "suggested_key": { "default": "Alt+Shift+1", "mac": "Command+Shift+1" }, "description": "Add select Text to first Field" }, "add-to-second-field": { "suggested_key": { "default": "Alt+Shift+2", "windows": "Alt+Shift+2", "mac": "Alt+Shift+2" }, "description": "Add select Text to second Field" }, "add-to-third-field": { "suggested_key": { "default": "Alt+Shift+3", "windows": "Alt+Shift+3", "mac": "Alt+Shift+3" }, "description": "Add select Text to third Field" }, "submit-data-to-popup": { "suggested_key": { "default": "Alt+Shift+4", "windows": "Alt+Shift+4", "mac": "Alt+Shift+4" }, "description": "Submit Data" } }, "manifest_version": 2 } |