Anki-Connect-addNotes

本插件通过向页面注入一个功能按钮,来调用Anki-Connect向Anki中添加卡片。

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Anki-Connect-addNotes
// @namespace    */*
// @version      0.1
// @description  本插件通过向页面注入一个功能按钮,来调用Anki-Connect向Anki中添加卡片。
// @author       otc
// @match        */*
// @icon         *
// @grant        GM_xmlhttpRequest
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
    function addNotes(){
        var mdUrl = ['<a href="',document.URL,'">',document.title,'</a>'].join("")
        var data = JSON.stringify({
            "action": "addNotes",
            "version": 6,
            "params": {
                "notes": [
                    {
                        "deckName": "Default",
                        "modelName": "Basic",
                        "fields": {
                            "Front": mdUrl
                        },
                        "tags": []
                    }
                ]
            }
        });
        GM_xmlhttpRequest({
            method: "post",
            url: 'http://127.0.0.1:8765',
            data: data,
            headers: { "Content-Type":"application/json" },
            onload: function(r) {
                console.log("添加至Anki成功!",r);
            }
        });
    }

    function addButton(){
        let Container = document.createElement('div');
        Container.id = "add-notes-container";
        Container.style.position="fixed"
        Container.style.left="0"
        Container.style.top="0"
        Container.style['z-index']="999999"
        Container.innerHTML =`<button id="addNotes" style="position:absolute; left:30px; top:20px">
  Add2Anki
</button>
`

        document.body.appendChild(Container);

        let button = document.getElementById("addNotes");
        button.onclick=addNotes;
    }
    addButton();
})();