Bootstrap Helper (Resizes, Duplicates, Doc)

Bootstrap Helper (Resizes, Duplicates, Doc)

Show the current Bootstrap breakpoint. Allow to duplicate a tab in each size and reload all in one click. Give doc's links.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "short_name": "__MSG_appShortName__",
  "description": "__MSG_appDesc__",
  "author": "Jonathan Defraiteur",
  "version": "1.0.0",
  "default_locale": "en",
  "browser_action": {
    "default_title": "__MSG_extTitle__",
    "default_icon": {
      "19": "icons/icon-19.png"
    },
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "js/bootstrap-helpers.js",
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "css/content.css"
      ],
      "js": [
        "js/zepto.min.js",
        "js/bootstrap-helpers.js",
        "js/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "options_ui": {
    "chrome_style": true,
    "page": "options.html"
  },
  "offline_enabled": true,
  "icons": {
    "16": "icons/icon-16.png",
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}