CaptionCrawler

CaptionCrawler

Browser extension for the Caption Crawler System

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "CaptionCrawler",
  "version": "2.1.0",
  "author": "Microsoft Corporation",
  "description": "Browser extension for the Caption Crawler System",
  "icons": {
    "16": "images/Internal_HCIMSR_BigBlk.png",
    "32": "images/Internal_HCIMSR_BigBlk.png",
    "48": "images/Internal_HCIMSR_BigBlk.png",
    "128": "images/Internal_HCIMSR_BigBlk.png"
  },
  "permissions": [
    "storage",
    "https://captioncrawler.azurewebsites.net/",
    "https://captioncrawlertest.azurewebsites.net/",
    "http://localhost/"
  ],
  "options_page": "options.html",
  "content_scripts": [
    {
      "js": [
        "jquery.js",
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    "jquery.js"
  ],
  "page_action": {
    "default_popup": "options.html",
    "default_title": "Caption Crawler",
    "default_icon": {
      "16": "images/Internal_HCIMSR_BigBlk.png",
      "20": "images/Internal_HCIMSR_BigBlk.png",
      "32": "images/Internal_HCIMSR_BigBlk.png",
      "40": "images/Internal_HCIMSR_BigBlk.png",
      "48": "images/Internal_HCIMSR_BigBlk.png",
      "128": "images/Internal_HCIMSR_BigBlk.png"
    }
  },
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}