HintEd

HintEd

HintEd scenarios editor and player

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "HintEd",
  "short_name": "HintEd",
  "description": "__MSG_extDescription__",
  "author": "HintEd",
  "version": "1.10.20.0",
  "version_name": "1.10.20.0",
  "minimum_chrome_version": "40",
  "homepage_url": "http://hinted.me",
  "icons": {
    "16": "static/icons/16.png",
    "32": "static/icons/32.png",
    "48": "static/icons/48.png",
    "128": "static/icons/128.png"
  },
  "default_locale": "en",
  "incognito": "spanning",
  "offline_enabled": false,
  "browser_action": {
    "default_icon": {
      "19": "static/icons/19.png",
      "38": "static/icons/38.png"
    },
    "default_title": "HintEd",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "bundles/background.bundle.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "static/css/content.css"
      ],
      "js": [
        "bundles/content.bundle.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "permissions": [
    "notifications",
    "webNavigation",
    "activeTab",
    "storage",
    "tabs",
    "http://hinted-dev.competentum.ru/*"
  ],
  "web_accessible_resources": [
    "static/*",
    "static/fonts/*",
    "bundles/content.bundle.js.map",
    "bundles/popup.bundle.js.map",
    "bundles/background.bundle.js.map"
  ]
}