Just Another Chrome Extension

Just Another Chrome Extension

Just Another Chrome Extension

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Just Another Chrome Extension",
  "version": "0.0.1",
  "manifest_version": 2,
  "description": "Just Another Chrome Extension",
  "homepage_url": "https://github.com/phonglk/chrome-extension-webpack-boilerplate",
  "icons": {
    "16": "assert/icon_16.png",
    "32": "assert/icon_32.png",
    "64": "assert/icon_64.png",
    "128": "assert/icon_128.png",
    "256": "assert/icon_256.png"
  },
  "background": {
    "page": "background.html"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "browser_action": {
    "default_icon": {
      "19": "assert/icon_16.png",
      "38": "assert/icon_64.png"
    },
    "default_title": "Just Another Chrome Extension",
    "default_popup": "popup.html"
  },
  "permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "common.dll.js",
        "ui.dll.js",
        "content.js"
      ],
      "css": [
        "content-style.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "assert/*"
  ]
}