Pondr: Tab Manager & Bookmark Reminder

Pondr: Tab Manager & Bookmark Reminder

The extension that manages bookmarks and finds the best time to remind you to revisit.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Pondr: Tab Manager & Bookmark Reminder",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuOAFbeTUhHZPLv6u7FpxPet0BoFASNkvdCnybiVyuHYthUF6AXmL8TkxjZD4izwSLg55lmFk+3Umwo/y9WBgrU1CE3qI/j6uWzjNvUzTaSIKfqzWxn/pYCcZejUSAFtYr5daNr/UgFtWb4LbjCyCQP1dgZBnBxTTSeRViwUiXTzROfw5W257Bp7Gt1HPD6E1VdF9A+Ouu+xMu3apHh9v2H6ADt1ch4UUlOUExl+gMgnW2IbchF9np3wC2yy1MkH+lreZ9EqstUtCi5MGpu96AW4jnMOtOsn2jv20dacvb2etOeyZA4vEZDrMd/bOEqh2PyAlvBXyV88oG++0l5+8YQIDAQAB",
  "version": "0.0.11",
  "description": "The extension that manages bookmarks and finds the best time to remind you to revisit.",
  "icons": {
    "32": "assets/icons/pondr_32.png",
    "48": "assets/icons/pondr_48.png",
    "128": "assets/icons/pondr_128.png"
  },
  "oauth2": {
    "client_id": "660145987644-gu0lnan1mnt0ttdvh198vd9dp3ome5gt.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.profile",
      "https://www.googleapis.com/auth/calendar"
    ]
  },
  "action": {
    "default_icon": "assets/icons/pondr_128.png",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "permissions": [
    "unlimitedStorage",
    "tabs",
    "storage",
    "notifications",
    "webNavigation",
    "favicon"
  ],
  "host_permissions": [
    "https://www.googleapis.com/calendar/v3/calendars/primary"
  ],
  "externally_connectable": {
    "matches": [
      "<all_urls>"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "options/options.html"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": []
    }
  ]
}