Anki Sentence Miner

Anki Sentence Miner

Instantly make Anki cards with AnkiConnect by highlighting over sentences.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Anki Sentence Miner",
  "version": "0.1",
  "description": "Instantly make Anki cards with AnkiConnect by highlighting over sentences.",
  "icons": {
    "16": "anki_symbol.png",
    "48": "anki_symbol.png",
    "128": "anki_symbol.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "commands": {
    "makeCard": {
      "suggested_key": {
        "default": "Ctrl+Shift+A",
        "mac": "Command+Shift+A"
      },
      "description": "Add a note of the highlighted text to Anki."
    }
  },
  "browser_action": {
    "default_icon": {
      "19": "anki_symbol.png",
      "38": "anki_symbol.png"
    },
    "default_title": "Anki Sentence Miner",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "activeTab"
  ]
}