Artwo.io tabs and favorites manager

Artwo.io tabs and favorites manager

Save and manage all your web pages in one place. Have AI help you structure and find what you need.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.1.1",
  "manifest_version": 3,
  "name": "Artwo.io tabs and favorites manager",
  "description": "Save and manage all your web pages in one place. Have AI help you structure and find what you need. ",
  "icons": {
    "128": "128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "64.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "tabs"
  ]
}