Fluentcards Dictionary

Fluentcards Dictionary

Look up words in a dictionary and save as flashcards.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Fluentcards Dictionary",
  "version": "0.8.4",
  "description": "Look up words in a dictionary and save as flashcards.",
  "permissions": [
    "tabs",
    "contextMenus",
    "<all_urls>",
    "storage",
    "unlimitedStorage"
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "Fluentcards48.png",
      "38": "Fluentcards48.png"
    },
    "default_title": "Fluentcards",
    "default_popup": "popup.html"
  },
  "minimum_chrome_version": "20",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "Fluentcards16.png",
    "48": "Fluentcards48.png",
    "128": "Fluentcards128.png",
    "256": "Fluentcards256.png"
  },
  "manifest_version": 2
}