Smart Tabs Organizer

Smart Tabs Organizer

Groups your tabs by similar content using Machine Learning. Privacy first! No user information is being stored.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Smart Tabs Organizer",
  "version": "0.0.1.1",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "description": "Groups your tabs by similar content using Machine Learning. Privacy first! No user information is being stored.",
  "permissions": [
    "alarms",
    "storage",
    "tabs",
    "tabGroups",
    "storage",
    "background"
  ],
  "background": {
    "service_worker": "background_automatic.js"
  },
  "host_permissions": [
    "http://*/",
    "https://*/"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_title": "Smart Tabs Organizer"
  },
  "icons": {
    "16": "resources/0.0.0.2/icon-earth-16.png",
    "32": "resources/0.0.0.2/icon-earth-32.png",
    "48": "resources/0.0.0.2/icon-earth-48.png",
    "128": "resources/0.0.0.2/icon-earth-128.png"
  },
  "manifest_version": 3
}