tackup

tackup

The extension will, at a specified interval, save the current tab list with the timestamp to localstorage. You can configure the backup interval as well as view and export the tabsets in the standard addon config place under about:addons.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "tackup",
  "version": "0.5.0",
  "author": "наб <nabijaczleweli.xyz>",
  "homepage_url": "https://github.com/nabijaczleweli/tackup",
  "description": "Continuously back up your browser tabs.",
  "icons": {
    "48": "assets/icons/tackup-48.png",
    "96": "assets/icons/tackup-96.png"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "52.0"
    }
  },
  "permissions": [
    "tabs",
    "storage",
    "unlimitedStorage"
  ],
  "background": {
    "scripts": [
      "src/tackup.js"
    ]
  },
  "options_ui": {
    "page": "assets/pages/config/index.html"
  },
  "browser_action": {
    "default_icon": {
      "19": "assets/icons/tackup-19.png",
      "38": "assets/icons/tackup-38.png"
    },
    "default_title": "View/edit tab backups"
  }
}