Time Capsule

Time Capsule

The best person to send you links matching your interests is a time-traveling version of yourself: set a periodicity when you bookmark a URL, and the tab will re-open in the future, be it an hour, a day, a month, a year, or a decade!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Time Capsule",
  "version": "2.4.0",
  "description": "__MSG_description__",
  "homepage_url": "https://maxlath.eu/projects/time-capsule",
  "icons": {
    "32": "icons/time-capsule-32.png",
    "92": "icons/time-capsule-92.png"
  },
  "permissions": [
    "alarms",
    "bookmarks",
    "menus",
    "storage",
    "tabs"
  ],
  "browser_action": {
    "default_icon": {
      "16": "icons/time-capsule-disabled-16.png",
      "32": "icons/time-capsule-disabled-32.png",
      "48": "icons/time-capsule-disabled-48.png",
      "92": "icons/time-capsule-disabled-92.png"
    },
    "theme_icons": [
      {
        "light": "icons/time-capsule-disabled-light-16.png",
        "dark": "icons/time-capsule-disabled-16.png",
        "size": 16
      },
      {
        "light": "icons/time-capsule-disabled-light-32.png",
        "dark": "icons/time-capsule-disabled-32.png",
        "size": 32
      },
      {
        "light": "icons/time-capsule-disabled-light-48.png",
        "dark": "icons/time-capsule-disabled-48.png",
        "size": 48
      },
      {
        "light": "icons/time-capsule-disabled-light-92.png",
        "dark": "icons/time-capsule-disabled-92.png",
        "size": 92
      }
    ],
    "default_title": "Time Capsule",
    "default_popup": "popup/popup.html",
    "browser_style": true
  },
  "background": {
    "scripts": [
      "background/background.js"
    ],
    "persistent": false
  },
  "default_locale": "en",
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+C"
      },
      "description": "Open periodicity menu"
    },
    "open-periodicity-settings": {
      "suggested_key": {
        "default": "Shift+Alt+C"
      },
      "description": "Open periodicity settings"
    }
  },
  "options_ui": {
    "page": "settings/settings.html",
    "open_in_tab": true
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{06cd6a0e-8923-4580-bcba-6da6e9550d2c}"
    }
  }
}