LinkHub

LinkHub

Save, organize, group, bookmark, and consolidate all of your links into one dashboard PLUS a ToDo List!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "LinkHub",
  "description": "Save, organize, group, bookmark, and consolidate all of your links into one dashboard PLUS a ToDo List!",
  "version": "0.1",
  "manifest_version": 3,
  "icons": {
    "128": "images/128.png"
  },
  "action": {
    "default_title": "LinkHub",
    "default_popup": "pages/popup.html"
  },
  "permissions": [
    "activeTab",
    "storage",
    "tabs"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "chrome_url_overrides": {
    "newtab": "./pages/index.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "css/*",
        "images/*",
        "pages/*"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self' 'unsafe-inline' https://code.jquery.com/ https://stackpath.bootstrapcdn.com/ https://cdn.jsdelivr.net/ https://kit.fontawesome.com/;"
  }
}