Bootstrapy

Bootstrapy

Boostrap style highlighter.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Bootstrapy",
  "short_name": "Strapy",
  "version": "0.0.1",
  "manifest_version": 2,
  "description": "Boostrap style highlighter.",
  "minimum_chrome_version": "29",
  "icons": {
    "128": "favicon.png"
  },
  "browser_action": {
    "default_icon": "favicon.png",
    "default_popup": "main.html"
  },
  "content_scripts": [
    {
      "js": [
        "bower_components/jquery/jquery-1.8.3.min.js",
        "js/content_script.js"
      ],
      "css": [
        "css/bootstrapy.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "http://*/",
    "https://*/"
  ]
}