Visual Bookmarks with All My Faves

Visual Bookmarks with All My Faves

Visualize your bookmarks and access them from anywhere. Visualize your web on allmyfaves.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": "Visual Bookmarks with All My Faves",
  "description": "Visualize your bookmarks and access them from anywhere. Visualize your web on allmyfaves.com",
  "version": "2.1",
  "permissions": [
    "tabs",
    "storage",
    "activeTab",
    "scripting",
    "notifications"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "icons": {
    "128": "images/icon.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icons": {
      "128": "images/icon.png"
    }
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://allmyfaves.com/*",
        "https://allmyfaves.ca/*",
        "https://allmyfaves.co.in/*",
        "https://allmyfaves.co.uk/*",
        "https://allmyfaves.fr/*",
        "https://allmyfaves.it/*",
        "https://au.allmyfaves.com/*"
      ],
      "js": [
        "login/index.js"
      ]
    }
  ]
}