Tabji

Tabji

The privacy-first lightweight alternative to The Great Suspender with cloud sync

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Tabji",
  "version": "2.5.0",
  "description": "The privacy-first lightweight alternative to The Great Suspender with cloud sync",
  "action": {
    "default_icon": {
      "16": "./assets/[email protected]",
      "32": "./assets/[email protected]"
    },
    "default_title": "Tabji",
    "default_popup": "./views/popup/index.html"
  },
  "icons": {
    "16": "./assets/[email protected]",
    "32": "./assets/[email protected]",
    "48": "./assets/[email protected]",
    "128": "./assets/[email protected]"
  },
  "options_page": "./views/options/index.html",
  "background": {
    "service_worker": "./background.global.js"
  },
  "permissions": [
    "tabs",
    "alarms",
    "storage",
    "cookies",
    "contextMenus",
    "tabGroups",
    "scripting"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "commands": {
    "2": {
      "description": "Suspend/Unsuspend this tab"
    },
    "3": {
      "description": "Never suspend this URL"
    },
    "4": {
      "description": "Never suspend this domain"
    },
    "5": {
      "description": "Suspend selected tabs"
    },
    "6": {
      "description": "Unsuspend selected tabs"
    },
    "7": {
      "description": "Suspend all tabs in this window"
    },
    "8": {
      "description": "Unsuspend all tabs in this window"
    },
    "9": {
      "description": "Suspend all tabs in all windows"
    },
    "10": {
      "description": "Unsuspend all tabs in all windows"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://tabji.link/s/*"
      ],
      "js": [
        "./content.global.js"
      ]
    }
  ]
}