ToChunkA Smart Tabs

ToChunkA Smart Tabs

Organizes a heap of tabs and bookmarks in a smart - easy to read way.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ToChunkA Smart Tabs",
  "description": "Organizes a heap of tabs and bookmarks in a smart - easy to read way.",
  "version": "0.50",
  "icons": {
    "48": "img/smarttabs_48.png",
    "96": "img/smarttabs_96.png"
  },
  "background": {
    "service_worker": "service_worker.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "browser-polyfill.min.js",
        "Readability.js",
        "common.js",
        "content.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options.htm"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "contextMenus",
    "storage",
    "notifications",
    "scripting"
  ],
  "optional_permissions": [
    "bookmarks",
    "offscreen"
  ],
  "optional_host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "incognito": "not_allowed",
  "commands": {
    "on_demand_tab_sort": {
      "suggested_key": "Alt+G",
      "description": "Tab sort on demand."
    },
    "move_to_read_later_bookmarks": {
      "suggested_key": "Alt+R",
      "description": "Move highlighted tabs to read later bookmarks."
    }
  }
}