Come Back to Tab

Come Back to Tab

Adds button to set reminders to come back to a tab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Come Back to Tab",
  "description": "Adds button to set reminders to come back to a tab",
  "version": "1.0.3",
  "manifest_version": 3,
  "author": "Robert Irelan",
  "homepage_url": "https://github.com/telotortium/come-back-to-tab",
  "permissions": [
    "alarms",
    "notifications",
    "offscreen",
    "storage",
    "tabs"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Come Back to Tab event",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "come-back-to-tab-icon-16.png",
    "32": "come-back-to-tab-icon-32.png",
    "48": "come-back-to-tab-icon-48.png",
    "128": "come-back-to-tab-icon-128.png"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+U",
        "mac": "Command+Shift+U",
        "chromeos": "Ctrl+Shift+U",
        "linux": "Ctrl+Shift+U"
      }
    }
  }
}