Bookmarks export

Bookmarks export

Export all your bookmarks in multiple formats (csv, excel, numbers, ods)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Export Bookmarks",
  "description": "Export all your bookmarks to CSV or Excel format",
  "version": "1.0.0",
  "author": "Patrice J. - [email protected]",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "permissions": [
    "activeTab",
    "bookmarks",
    "downloads"
  ],
  "action": {
    "default_icon": {
      "16": "images/mark-16.png",
      "32": "images/mark-32.png",
      "128": "images/mark-128.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/mark-16.png",
    "32": "images/mark-32.png",
    "128": "images/mark-128.png"
  },
  "content_scripts": [
    {
      "js": [
        "content.js",
        "xlsx.full.min.js",
        "xlsx.zahl.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}