Viento Bootstrap Colors

Viento Bootstrap Colors

A Bootstrap 3 color customization Google Chrome extension

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Viento Bootstrap Colors",
  "version": "1.0",
  "manifest_version": 2,
  "description": "A Bootstrap 3 color customization Google Chrome extension",
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "icons": {
    "16": "bootstrapcolors-16.png",
    "48": "bootstrapcolors-48.png",
    "128": "bootstrapcolors-128.png"
  },
  "page_action": {
    "default_icon": "bootstrapcolors-48.png",
    "default_title": "Viento Bootstrap Colors"
  },
  "permissions": [
    "tabs",
    "*://getbootstrap.com/customize*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://getbootstrap.com/2.3.2/customize.html*",
        "*://getbootstrap.com/customize*"
      ],
      "js": [
        "js/jquery.min.js",
        "js/colpick.js",
        "js/bootstrap-color.js"
      ],
      "css": [
        "css/colpick.css",
        "css/bootstrap-color.css"
      ]
    }
  ]
}