Fullscreen Tab Bar

Fullscreen Tab Bar

Fullscreen tab bar based on the style of qutebrowser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Fullscreen Tab Bar",
  "description": "Fullscreen tab bar based on the style of qutebrowser.",
  "author": "Josh Medeiros",
  "version": "0.2",
  "permissions": [
    "tabs"
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "css": [
        "content.css"
      ],
      "js": [
        "content.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "web_accessible_resources": [
    "tabs.html"
  ]
}