Quick Anki Adder

Quick Anki card adder with translate, animated picture (.gif), and text-to-speech (TTS ) resources.

Τι είναι το Quick Anki Adder;

Το Quick Anki Adder είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον francoissouza17, και η κύρια λειτουργία του είναι "Quick Anki card adder with translate, animated picture (.gif), and text-to-speech (TTS ) resources.".

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

screenshot
screenshot
screenshot

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

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

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

                        A quick Anki card adder with translate, animated picture (.gif), and text-to-speech (TTS ) resources.

How to Use: https://www.linkedin.com/pulse/quick-anki-adder-chrome-extension-fran%C3%A7ois-souza/

- - - - - Setup - - - - -
In order to use this app, you need to have the AnkiConnect (2055492159) add-on and do a little configuration described as follows:  

“Now, click on the AnkiConnect add-on and then on the Config button. In the windows that show up, there is the field "http://localhost". You need to change this to "*". This is a crucial step to do to make possible the communication between Anki and any website, otherwise, the connection will fail. You can read more about this with the CORS docs provided by the Mozilla 💻.”

- - - - - Features - - - - -
Instantly translate from selected word/sentence in any website: If you select a text on website a little popup will appers below your selection with the original sentence (that you can highlight any word by click on them) and the automatic translation 🔠;

Instantly add a card to Anki: After setting up the target Anki language and deck by clicking the Quick Anki Adder icon, simply select the phrase on the website and click the Add to Anki 🃏 button. That's it! your card was created in a few seconds 🗃️;

If you study on a smartphone or in books and collect phrases from there, just add all phrases in one batch option by clicking the 📃 Add multiple phrases button in the popup. It will open a new page where you can paste your sentence on the left side and on the right side the formed sentences will appear that you can highlight. It's an efficient way to add multiple sentences in just a few seconds 📑;

You can improve your cards with the amazing free Text-To-Speech (TTS) feature provided by the VoiceRSS API. Just visit the Voice RSS website to request your key and place it in the Quick Anki Adder popup 🗣;

You can enhance your cards with funny GIFs provided by GIPHY. Again, to use it, you just need to order a free key from the GIPHY website and place it in the Quick Anki Adder popup 🖼️;                    

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

Όνομα Quick Anki Adder Quick Anki Adder
ID pkikplidifkocgobiakiiofcpcpnljjd
Επίσημο URL https://chromewebstore.google.com/detail/quick-anki-adder/pkikplidifkocgobiakiiofcpcpnljjd
Περιγραφή Quick Anki card adder with translate, animated picture (.gif), and text-to-speech (TTS ) resources.
Μέγεθος Αρχείου 40.51 KB
Αριθμός Εγκαταστάσεων 263
Τρέχουσα Έκδοση 0.0.0.1
Τελευταία Ενημέρωση 2022-07-26
Ημερομηνία Δημοσίευσης 2022-06-28
Αξιολόγηση 2.67/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής francoissouza17
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Quick Anki Adder",
    "short_name": "QAA",
    "version": "0.0.0.1",
    "description": "Quick Anki card adder with translate, animated picture (.gif), and text-to-speech (TTS ) resources.",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/LogoQuick16.png",
            "32": "\/images\/LogoQuick32.png",
            "48": "\/images\/LogoQuick48.png",
            "128": "\/images\/LogoQuick128.png"
        }
    },
    "icons": {
        "16": "\/images\/LogoQuick16.png",
        "32": "\/images\/LogoQuick32.png",
        "48": "\/images\/LogoQuick48.png",
        "128": "\/images\/LogoQuick128.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "background.js",
                "CardAdder.js",
                "popup.js",
                "add_in_batch.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}