TabFern tab manager and backup tool

TabFern tab manager and backup tool

Save and restore your tabs and windows, and navigate tabs in a vertical view.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_wsLongName__",
  "short_name": "__MSG_wsShortName__",
  "version": "0.3.1.1337",
  "version_name": "0.3.1",
  "offline_enabled": true,
  "manifest_version": 2,
  "minimum_chrome_version": "54",
  "description": "Save and restore your tabs and windows, and navigate tabs in a vertical view.",
  "homepage_url": "https://cxw42.github.io/TabFern/",
  "icons": {
    "16": "/assets/favicon.png",
    "48": "/assets/fern48.png",
    "128": "/assets/fern128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "bg/background.js"
    ],
    "persistent": true
  },
  "options_page": "settings/index.html",
  "browser_action": {
    "default_icon": {
      "16": "/assets/favicon.png",
      "48": "/assets/fern48.png",
      "128": "/assets/fern128.png"
    },
    "default_title": "TabFern"
  },
  "permissions": [
    "file://*/*",
    "chrome://favicon/",
    "tabs",
    "storage",
    "unlimitedStorage",
    "contextMenus"
  ],
  "web_accessible_resources": [
    "/assets/*",
    "/t/*"
  ],
  "commands": {
    "reveal-view": {
      "description": "Open the TabFern window"
    }
  }
}