Bookmark Sorter

Bookmark Sorter

Keeps bookmarks sorted

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Bookmark Sorter",
  "version": "2.1",
  "description": "Keeps bookmarks sorted",
  "author": "[email protected]",
  "action": {
    "default_popup": "./source/html/options.html"
  },
  "background": {
    "service_worker": "./build/background.js",
    "type": "module"
  },
  "options_ui": {
    "page": "./source/html/options.html"
  },
  "permissions": [
    "bookmarks",
    "storage"
  ]
}