Bootstrap 4 Viewport

Bootstrap 4 Viewport

Detects and shows (XL, LG, MD, SM, Col) values depending on the window width.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "default_locale": "en",
  "name": "Bootstrap 4 Viewport",
  "version": "1.1",
  "description": "Detects and shows (XL, LG, MD, SM, Col) values depending on the window width.",
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery/jquery.min.js",
        "src/content_scripts/content.js"
      ]
    }
  ],
  "icons": {
    "16": "icons/bootstrap-stack.png",
    "32": "icons/bootstrap-stack.png",
    "48": "icons/bootstrap-stack.png",
    "128": "icons/bootstrap-stack.png"
  },
  "page_action": {
    "default_popup": "src/browser_action/browser_action.html",
    "default_icon": {
      "16": "icons/bootstrap-stack.png",
      "32": "icons/bootstrap-stack.png",
      "48": "icons/bootstrap-stack.png",
      "128": "icons/bootstrap-stack.png"
    }
  },
  "manifest_version": 2
}