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開發的Chrome擴展程式,該擴展的主要功能是“highlighting extension that saves the highlighted cloze deletions into anki. Requires that anki has the AnkiConnect plugin installed”。

擴展截圖

screenshot
screenshot

下載Anki chrome highlighter擴展crx文件

下載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
官方網址 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"
    ]
}