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 mhg1rjm3ntleriag द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "highlighting extension that saves the highlighted cloze deletions into anki. Requires that anki has the AnkiConnect plugin installed"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Anki chrome highlighter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    ]
}