kasahorow

kasahorow

Learn something true. Every day.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "kasahorow",
  "short_name": "kasahorow",
  "description": "Learn something true. Every day.",
  "version": "2017.1.1",
  "manifest_version": 2,
  "omnibox": {
    "keyword": "kw"
  },
  "options_page": "options.html",
  "browser_action": {
    "default_title": "kasahorow",
    "default_icon": "icon16.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "contextMenus",
    "notifications",
    "*://*.kasahorow.org/*"
  ],
  "background": {
    "scripts": [
      "common.js",
      "pictionary.js",
      "omnisearch.js",
      "vendor/jquery/jquery.js",
      "inspiration.js",
      "keyboard.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.kasahorow.org/*"
      ],
      "css": [],
      "js": [
        "pictionaryContent.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "chrome_url_overrides": {
    "newtab": "NewTab.html"
  },
  "web_accessible_resources": [
    "icon48.png"
  ]
}