Auto Page Opener

Auto Page Opener

Automatically open web pages at scheduled times.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Auto Page Opener",
  "version": "1.1.1",
  "description": "Automatically open web pages at scheduled times.",
  "permissions": [
    "storage",
    "background",
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "options_page": "options.html",
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/auto_open_logo16.png",
      "32": "images/auto_open_logo32.png",
      "48": "images/auto_open_logo48.png",
      "128": "images/auto_open_logo128.png"
    }
  },
  "icons": {
    "16": "images/auto_open_logo16.png",
    "32": "images/auto_open_logo32.png",
    "48": "images/auto_open_logo48.png",
    "128": "images/auto_open_logo128.png"
  },
  "minimum_chrome_version": "79",
  "manifest_version": 2
}