Split Plus

Split Plus

Easily split browser windows into smart layouts

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "2.4.3",
  "manifest_version": 2,
  "browser_action": {
    "default_icon": {
      "16": "images/icons/icon-16.png",
      "48": "images/icons/icon-48.png",
      "128": "images/icons/icon-128.png",
      "300": "images/icons/icon-300.png"
    },
    "default_title": "__MSG_name__",
    "default_popup": "index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "js": [
        "js/content.js"
      ]
    }
  ],
  "default_locale": "en",
  "icons": {
    "16": "images/icons/icon-16.png",
    "48": "images/icons/icon-48.png",
    "128": "images/icons/icon-128.png",
    "300": "images/icons/icon-300.png"
  },
  "permissions": [
    "tabs",
    "system.display",
    "storage",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "offline_enabled": true,
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'"
}