Academist

Academist

Find specialized study resources in no time with this intelligent tool.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Academist",
  "short_name": "Academist",
  "description": "Find specialized study resources in no time with this intelligent tool.",
  "version": "2.0.3",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.schoolloop.com/portal/student_home*",
        "*://*.schoolloop.com/portal/parent_home*"
      ],
      "js": [
        "jquery-2.2.2.min.js",
        "lunr.min.js",
        "html_utils.js",
        "options_utils.js",
        "textbook_utils.js",
        "subject_utils.js",
        "portal_content.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "globe_with_hat_128.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "globe_with_hat_16.png",
    "48": "globe_with_hat_48.png",
    "128": "globe_with_hat_128.png"
  },
  "options_page": "options.html",
  "permissions": [
    "storage",
    "tabs",
    "*://*.schoolloop.com/portal/student_home*",
    "*://*.schoolloop.com/portal/parent_home*"
  ],
  "web_accessible_resources": [
    "topicInfo.json",
    "indexes.json",
    "options.html",
    "globe_with_hat_48.png",
    "check_48.png",
    "questionable_48.png",
    "search_48.png",
    "KhanAcademyMathTopicsList.xml",
    "KhanAcademyScienceTopicsList.xml",
    "KhanAcademyHumanitiesTopicsList.xml",
    "KhanAcademyEconomicsTopicsList.xml",
    "Textbooks/*/*"
  ]
}