Google Hangouts Web Messenger

Google Hangouts Web Messenger

Google Hangouts Web Messenger brings Google Hangouts right into your browser to chat with your friends.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "Google Hangouts Web Messenger brings Google Hangouts right into your browser to chat with your friends.",
  "homepage_url": "http://barisderin.com",
  "manifest_version": 2,
  "name": "Google Hangouts Web Messenger",
  "version": "63.1resigned1",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon19.png",
      "38": "images/icon38.png"
    },
    "default_popup": "popup.html",
    "default_title": "Google Hangouts Web Messenger"
  },
  "content_scripts": [
    {
      "js": [
        "scripts/content_script.js"
      ],
      "css": [
        "style/contentstyle.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    },
    {
      "js": [
        "scripts/content_script_st.js"
      ],
      "matches": [
        "*://*.barisderin.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "sidebar_action": {
    "default_title": "Google Hangouts Web Messenger",
    "default_panel": "sidebar.html",
    "default_icon": "sidebar.png"
  },
  "icons": {
    "48": "images/icon48.png"
  },
  "permissions": [
    "contextualIdentities",
    "cookies",
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "contextMenus",
    "storage",
    "<all_urls>"
  ],
  "commands": {
    "_execute_sidebar_action": {
      "suggested_key": {
        "default": "Alt+G",
        "mac": "Alt+G"
      }
    }
  },
  "applications": {
    "gecko": {
      "id": "{c4c8bd04-e508-46df-a109-92af7ea4992b}"
    }
  }
}