AnkiTab

AnkiTab

Replace new tab page with Anki flashcards

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AnkiTab",
  "version": "0.5.2",
  "description": "Replace new tab page with Anki flashcards",
  "manifest_version": 2,
  "incognito": "split",
  "background": {
    "scripts": [
      "bg.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/16.png",
      "24": "icons/24.png",
      "32": "icons/32.png"
    },
    "default_title": "AnkiTab"
  },
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "storage",
    "http://localhost:8765/"
  ],
  "chrome_url_overrides": {
    "newtab": "app/index.html"
  },
  "options_page": "options/index.html",
  "sandbox": {
    "pages": [
      "app/sandbox.html",
      "app/js/sandbox.js"
    ]
  }
}