Willow: Graph-Based Browsing

Willow: Graph-Based Browsing

View and organize your browsing sessions as graph structures in a simple side panel.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Willow: Graph-Based Browsing",
  "description": "View and organize your browsing sessions as graph structures in a simple side panel.",
  "version": "1.0.0",
  "manifest_version": 2,
  "icons": {
    "48": "images/willowIcon_48x48.png",
    "128": "images/willowIcon_128x128.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "history",
    "downloads",
    "chrome://favicon/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "GraphOverlay/SidePanel/SidePanel.js"
      ],
      "run_at": "document_end",
      "match_about_blank": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "cytoscape.min.js"
      ],
      "run_at": "document_end",
      "match_about_blank": true
    }
  ],
  "background": {
    "scripts": [
      "cytoscape.min.js",
      "node_modules/layout-base/layout-base.js",
      "node_modules/cose-base/cose-base.js",
      "node_modules/cytoscape-fcose/cytoscape-fcose.js",
      "node_modules/cytoscape-layout-utilities/cytoscape-layout-utilities.js",
      "SyncBroadcaster.js",
      "GraphOverlay/SidePanel/SidePanel_background.js",
      "GraphOverlay/Graph/GraphStyler.js",
      "GraphOverlay/Graph/GraphDrawer_background.js",
      "SessionGraph.js",
      "History/History.js",
      "Monitor.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": {
      "50": "images/willowIcon_50x50.png"
    }
  },
  "web_accessible_resources": [
    "images/willowIcon_50x50.png",
    "GraphOverlay/SidePanel/side_panel.html",
    "GraphOverlay/SidePanel/side_panel.css",
    "GraphOverlay/SidePanel/side_panel.js",
    "GraphOverlay/SidePanel/settings_menu.css",
    "GraphOverlay/SidePanel/info_page.css",
    "GraphOverlay/SidePanel/how_to_page.css",
    "GraphOverlay/Graph/GraphDrawer.html",
    "icons/close.png",
    "icons/right-arrow.png",
    "icons/left-arrow.png",
    "icons/graph.png",
    "icons/settings.png",
    "icons/new.png",
    "icons/information.png",
    "icons/question-mark.png"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'; img-src chrome://favicon data:;"
}