Meet 4 Poker

Meet 4 Poker

Play Poker with your friends via Google Meet™ while social distancing. Please, games are for bragging points only!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Meet 4 Poker",
  "description": "Play Poker with your friends via Google Meet™ while  social distancing.  Please, games are for bragging points only!",
  "permissions": [
    "activeTab",
    "declarativeContent",
    "https://meet.google.com/"
  ],
  "version": "1.1.0",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "images/*.png",
    "cards.ttf",
    "sounds/*.mp3"
  ],
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/meet_poker16.png",
      "32": "images/meet_poker32.png",
      "48": "images/meet_poker48.png",
      "128": "images/meet_poker128.png"
    }
  },
  "icons": {
    "16": "images/meet_poker16.png",
    "32": "images/meet_poker32.png",
    "48": "images/meet_poker48.png",
    "128": "images/meet_poker128.png"
  }
}