Export History/Bookmarks to JSON/CSV*/XLS*

Export History/Bookmarks to JSON/CSV*/XLS*

Allows to export Chrome history and bookmarks into JSON file, which can be converted to CSV/XLS/XLSX file at http://www.json-xls.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Export History/Bookmarks to JSON/CSV*/XLS*",
  "description": "Allows to export Chrome history and bookmarks into JSON file, which can be converted to CSV/XLS/XLSX file at http://www.json-xls.com",
  "version": "2.3",
  "permissions": [
    "history",
    "bookmarks",
    "downloads"
  ],
  "action": {
    "default_icon": "icon512.png",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "popup.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png",
    "512": "icon512.png"
  }
}