Go Around Websites

Go Around Websites

Automatically visit multiple specified websites in the background on a single tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extension_name__",
  "short_name": "__MSG_extension_name__",
  "version": "1.2023.408.0",
  "author": "dlw@mcprv",
  "description": "__MSG_extension_description__",
  "default_locale": "en",
  "browser_specific_settings": {
    "gecko": {
      "id": "{86460916-aa82-47c6-afd7-ba5bed32c180}"
    }
  },
  "permissions": [
    "<all_urls>",
    "tabs",
    "tabHide",
    "sessions",
    "history",
    "notifications",
    "storage",
    "menus",
    "cookies",
    "contextualIdentities",
    "management"
  ],
  "optional_permissions": [
    "file://*/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "browser_action": {
    "browser_style": true,
    "default_title": "__MSG_extension_name__",
    "default_icon": {
      "96": "lib/list.svg"
    }
  },
  "icons": {
    "96": "lib/list.svg"
  },
  "commands": {
    "start_pause_processing": {
      "suggested_key": {},
      "description": "__MSG_start_pause_processing__"
    },
    "end_processing": {
      "suggested_key": {},
      "description": "__MSG_end_processing__"
    },
    "duplicate_tab": {
      "suggested_key": {},
      "description": "__MSG_duplicate_tab__"
    },
    "show_hide_tab": {
      "suggested_key": {},
      "description": "__MSG_show_hide_tab__"
    },
    "open_options_page": {
      "suggested_key": {},
      "description": "__MSG_open_options_page__"
    }
  }
}