Open tabs in order

Open tabs in order

This is an extension that updates tabs in order when multiple tabs are opened.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Open tabs in order",
  "version": "1.0.5.18",
  "version_name": "0.0.5.18",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "icons": {
    "128": "/icon/icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/js/stop.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "tabs"
  ]
}