Supersurfer - Copilot for browsing

Supersurfer - Copilot for browsing

Supersurfer is a copilot for the web. It surfs the links from the current page to give you a preview of how interesting they are.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "Supersurfer is a copilot for the web. It surfs the links from the current page to give you a preview of how interesting they are.",
  "version": "0.0.1.4",
  "name": "Supersurfer - Copilot for browsing",
  "manifest_version": 2,
  "permissions": [
    "history",
    "tabs",
    "storage",
    "webNavigation",
    "scripting"
  ],
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "contentScript-bundle.js"
      ]
    }
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "options_page": "options.html",
  "background": {
    "page": "background.html",
    "scripts": [
      "background-bundle.js"
    ]
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon-128.png"
  },
  "commands": {
    "save-tab": {
      "suggested_key": {
        "default": "Alt+S",
        "mac": "Alt+S"
      },
      "description": "Save a tab"
    },
    "save-all-tabs": {
      "suggested_key": {
        "default": "Alt+A",
        "mac": "Alt+A"
      },
      "description": "Save all tabs"
    },
    "resurface-tabs": {
      "suggested_key": {
        "default": "Alt+X",
        "mac": "Alt+X"
      },
      "description": "Resurface most relevant tabs"
    },
    "darkmode": {
      "suggested_key": {
        "default": "Alt+D",
        "mac": "Alt+D"
      },
      "description": "Invert color of page"
    }
  },
  "icons": {
    "16": "icon-16.png",
    "34": "favicon.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "web_accessible_resources": [
    "options.html"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self';child-src *;frame-src 'self' *",
  "browser_specific_settings": {
    "gecko": {
      "id": "{c6bbdb0d-0b57-419c-a23b-08bc9ec6f022}"
    }
  }
}