Bookmark Flow

Bookmark Flow

A bookmark tool to synchronize your bookmarks between Google Chrome and Microsoft Edge based on GitHub Gist

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Bookmark Flow",
  "version": "0.0.0.1",
  "manifest_version": 3,
  "description": "A bookmark tool to synchronize your bookmarks between Google Chrome and Microsoft Edge based on GitHub Gist",
  "icons": {
    "16": "icons/bf16x16.png",
    "32": "icons/bf32x32.png",
    "48": "icons/bf48x48.png",
    "128": "icons/bf128x128.png"
  },
  "action": {
    "default_popup": "popup/popup.html",
    "default_title": "Bookmark Flow",
    "default_icon": "icons/bf128x128.png"
  },
  "permissions": [
    "bookmarks",
    "storage",
    "notifications",
    "alarms"
  ],
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}