Anki chrome highlighter

highlighting extension that saves the highlighted cloze deletions into anki. Requires that anki has the AnkiConnect plugin installed

Τι είναι το Anki chrome highlighter;

Το Anki chrome highlighter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον mhg1rjm3ntleriag, και η κύρια λειτουργία του είναι "highlighting extension that saves the highlighted cloze deletions into anki. Requires that anki has the AnkiConnect plugin installed".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Anki chrome highlighter

Λήψη αρχείων επέκτασης Anki chrome highlighter σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Allows you to add cloze notes into anki by selecting text and clicking the menu that comes up. And after a cloze has been added it will highlight the text in the article.

By clicking the favicon next to the address bar the plugin will go to the next article that have notes.

Requires AnkiConnect for anki https://ankiweb.net/shared/info/2055492159

Changelog:

0.0.0.2
+ You can now select which deck to save your cards to in the create cloze dialog box.
+ Fixed a bug where the css styling of the main page would make the dialog box become unusable
+Restyled the createcloze dialog

0.0.0.1
Initial release                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Anki chrome highlighter Anki chrome highlighter
ID gangkbilpgbfmkhkgpnbmdopncckmlkm
Επίσημο URL https://chrome.google.com/webstore/detail/anki-chrome-highlighter/gangkbilpgbfmkhkgpnbmdopncckmlkm
Περιγραφή highlighting extension that saves the highlighted cloze deletions into anki. Requires that anki has the AnkiConnect plugin installed
Μέγεθος Αρχείου 21.7 KB
Αριθμός Εγκαταστάσεων 102
Τρέχουσα Έκδοση 0.0.0.2
Τελευταία Ενημέρωση 2019-01-26
Ημερομηνία Δημοσίευσης 2019-01-22
Αξιολόγηση 2.33/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής mhg1rjm3ntleriag
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Anki chrome highlighter",
    "description": "highlighting extension that saves the highlighted cloze deletions into anki. Requires that anki has the AnkiConnect plugin installed",
    "version": "0.0.0.2",
    "manifest_version": 2,
    "options_page": "Options.html",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "MainScript.js"
            ],
            "css": [
                "Highlighting.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "IncrementalReadingScheduler.js"
        ],
        "persistent": false
    },
    "browser_action": [],
    "permissions": [
        "activeTab",
        "storage"
    ]
}