Splitscreen

Splitscreen

Displays two webpages next to each other in a new tab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Splitscreen",
  "description": "Displays two webpages next to each other in a new tab",
  "version": "0.0.1",
  "author": "Siddharth Vadgama <[email protected]>",
  "homepage_url": "https://github.com/siddv/splitscreen",
  "icons": {
    "16": "icons/splitscreen-16.png",
    "32": "icons/splitscreen-32.png",
    "48": "icons/splitscreen-48.png",
    "128": "icons/splitscreen-128.png"
  },
  "permissions": [
    "management",
    "storage",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "chrome_url_overrides": {
    "newtab": "index.html"
  }
}