My Tab Reminder

My Tab Reminder

Remind or Schedule to open your browser tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "My Tab Reminder",
  "description": "Remind or Schedule to open your browser tab.",
  "homepage_url": "https://www.mytabreminder.com",
  "permissions": [
    "storage",
    "notifications",
    "tabs",
    "https://www.loadigital.com/mytabreminder/"
  ],
  "manifest_version": 2,
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "version": "1.1",
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "My Tab Reminder",
    "default_icon": {
      "16": "public/images/bd-16.png",
      "32": "public/images/bd-32.png",
      "48": "public/images/bd-48.png",
      "128": "public/images/bd-128.png"
    }
  },
  "icons": {
    "16": "public/images/bd-16.png",
    "32": "public/images/bd-32.png",
    "48": "public/images/bd-48.png",
    "128": "public/images/bd-128.png"
  },
  "chrome_url_overrides": {
    "newtab": "landing.html"
  }
}