Photon Redlines

Photon Redlines

Show UI Redlines for Bootstrap 3 pages by Photon

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Photon Redlines",
  "description": "Show UI Redlines for Bootstrap 3 pages by Photon",
  "version": "1.1.0",
  "manifest_version": 2,
  "icons": {
    "16": "icons/16x16.png",
    "48": "icons/48x48.png",
    "128": "icons/128x128.png"
  },
  "permissions": [
    "tabs"
  ],
  "browser_action": {
    "default_icon": {
      "19": "icons/19x19.png",
      "38": "icons/38x38.png"
    },
    "default_title": "Show UI Redlines by Photon"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "css/redlines.css"
      ],
      "js": [
        "js/jquery.js",
        "js/content.js"
      ]
    }
  ]
}