Split View

Split View

Splitted view of multiple pages at the same time.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Split View",
  "description": "Splitted view of multiple pages at the same time.",
  "permissions": [
    "storage",
    "tabs"
  ],
  "icons": {
    "128": "icons/icon128.png",
    "256": "icons/icon256.png"
  },
  "version": "1.0.0",
  "options_page": "options.html",
  "action": {
    "default_icon": {
      "128": "icons/icon128.png",
      "256": "icons/icon256.png"
    },
    "default_title": "Split View"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "offline_enabled": true
}