Surf the World

Surf the World

Surf the World

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Surf the World",
  "short_name": "Surf the World",
  "version": "1.0.14",
  "description": "Surf the World",
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "identity"
  ],
  "icons": {
    "16": "assets/stw-wave-16.png",
    "48": "assets/stw-wave-48.png",
    "128": "assets/stw-wave-128.png"
  },
  "browser_action": {
    "default_title": "Surf The World",
    "default_icon": "assets/stw-wave.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "contentscript.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js",
      "socketio.js"
    ],
    "persistent": false
  },
  "commands": {
    "addActiveFriend": {
      "suggested_key": {
        "default": "Ctrl+Shift+S",
        "mac": "Command+Shift+S"
      },
      "description": "Sends a message to indicate a friend is active on the page."
    },
    "chatMessageReceived": {
      "suggested_key": {
        "default": "Ctrl+Shift+0",
        "mac": "Command+Shift+0"
      },
      "description": "Imitates receiving a chat message for a random active friend."
    }
  },
  "web_accessible_resources": [
    "assets/*.png"
  ],
  "oauth2": {
    "client_id": "544716252819-pkog399m56r9png6ojpmhiq61e4lin76.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email"
    ]
  }
}