Fiszkoteka - create flashcards from webpage

Fiszkoteka - create flashcards from webpage

This will extract the most important vocabulary and create flashcards

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_Fiszkoteka_extName__",
  "short_name": "Fiszkoteka",
  "description": "__MSG_Fiszkoteka_extDescription__",
  "version": "0.4.2.29268",
  "service": "fiszkoteka_pl",
  "permissions": [
    "activeTab",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": false,
      "js": [
        "jquery-1.10.2.js",
        "content_script.js",
        "shared_functions.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "background": {
    "scripts": [
      "shared_functions.js",
      "background.js"
    ]
  },
  "default_locale": "en",
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "fishicon19x19.png"
  },
  "icons": {
    "16": "fishicon19x19.png",
    "128": "fishicon128x128.png"
  }
}