BCW: Bootstrap Grid Helper

BCW: Bootstrap Grid Helper

Gives your Bootstrap containers, rows and columns background colors to assist your learning with positioning

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "BCW: Bootstrap Grid Helper",
  "version": "0.1.3",
  "description": "Gives your Bootstrap containers, rows and columns background colors to assist your learning with positioning",
  "browser_action": {
    "default_icon": "glasses.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "glasses16.png",
    "48": "glasses48.png",
    "128": "glasses128.png"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "file:///*/*"
  ],
  "content_scripts": [
    {
      "html": [
        "popup.html"
      ],
      "js": [
        "jquery-3.1.1.min.js",
        "popup.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}