Ruzu Anki pop-ups

Ruzu Anki pop-ups

Chrome extension that periodically presents Anki cards via notifications

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "2.0.1",
  "manifest_version": 2,
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "default_locale": "en",
  "browser_action": {
    "default_icon": "images/icon128.png",
    "default_popup": "options.html"
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "storage",
    "notifications",
    "alarms",
    "idle",
    "background",
    "contextMenus",
    "http://localhost/*"
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": false
  },
  "commands": {
    "ruzu-toggle-enabled": {
      "suggested_key": {
        "default": "Ctrl+Shift+1"
      },
      "description": "Enable / Disable test notifications",
      "global": true
    },
    "ruzu-show-next-question": {
      "suggested_key": {
        "default": "Ctrl+Shift+2"
      },
      "description": "Show next question",
      "global": true
    }
  },
  "web_accessible_resources": [
    "images/icon48.png"
  ]
}