Flashcardly!

Flashcardly!

Study Flashcards while browsing the web!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Flashcardly!",
  "options_page": "options.html",
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "version": "0.0.0.2",
  "description": "Study Flashcards while browsing the web!",
  "permissions": [
    "storage",
    "declarativeContent",
    "topSites"
  ],
  "manifest_version": 2,
  "browser_action": {
    "default_icon": {
      "16": "images/flashcardly16.png",
      "32": "images/flashcardly32.png",
      "48": "images/flashcardly48.png",
      "128": "images/flashcardly128.png"
    }
  },
  "icons": {
    "16": "images/flashcardly16.png",
    "32": "images/flashcardly32.png",
    "48": "images/flashcardly48.png",
    "128": "images/flashcardly128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  }
}