List open tabs

List open tabs

Lists all open tabs in browser cuz why not! Also button to close them

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "List open tabs",
  "description": "Lists all open tabs in browser cuz why not! Also button to close them",
  "version": "1.0.0",
  "short_name": "OTAB",
  "author": "Debayan",
  "permissions": [
    "webRequest",
    "tabs"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "../popup.html",
    "default_title": "List Tabs"
  },
  "icons": {
    "16": "./images/tab-16.png",
    "32": "./images/tab-32.png",
    "64": "./images/tab-64.png",
    "128": "./images/tab-128.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}