Hippo Quiz - Question Extractor

Hippo Quiz - Question Extractor

Generate Question and Answers automatically from the selected web content and add it to Quiz.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Hippo Quiz - Question Extractor",
  "description": "Generate Question and Answers automatically from the selected web content and add it to Quiz.",
  "version": "1.4.1",
  "permissions": [
    "contextMenus",
    "tabs",
    "storage",
    "activeTab",
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "css": [
        "css/custom.css"
      ],
      "js": [
        "js/jquery-2.0.3.min.js",
        "js/jquery.scoped.js",
        "js/bootstrap.min.js",
        "js/foundation.min.js",
        "js/ashe.js",
        "globalTemplate.js",
        "content-script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "template.html",
    "js/jquery-2.0.3.min.js",
    "js/bootstrap.min.js",
    "js/mustache.min.js",
    "css/bootstrap.min.css",
    "css/custom.css",
    "fonts/glyphicons-halflings-regular.woff",
    "fonts/glyphicons-halflings-regular.ttf",
    "img/add-icon.png",
    "img/remove-icon.png",
    "img/success-icon.png",
    "img/error-icon.png",
    "img/warning-icon.png",
    "img/info-icon.png"
  ],
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "img/icon48.png",
      "38": "img/icon48.png"
    },
    "default_popup": "popup.html"
  },
  "background": {
    "page": "popup.html"
  }
}