Slidetorial for Chrome

Slidetorial for Chrome

Create tutorial for any web app in the blink of an eye!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "short_name": "__MSG_appName__",
  "version": "0.1.2",
  "manifest_version": 2,
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "images/chrome-16.png",
    "48": "images/chrome-48.png",
    "128": "images/chrome-128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "images/chrome-19.png",
      "38": "images/chrome-38.png"
    },
    "default_title": "Slidetorial for Chrome",
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "css": [
        "styles/contentScriptStyles.css",
        "styles/hintModal.css"
      ],
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "bower_components/jquery/dist/jquery.js",
        "scripts/vendors/jquery-outline.js",
        "scripts/content/contentscript.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "activeTab",
    "tabs",
    "http://*/*",
    "https://*/*",
    "storage",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    "images/ChromeFirstSteps.svg"
  ]
}