Yac Voice Messages

Yac Voice Messages

Share voice messages via email, social networks, and millions of other websites. Say hello to Yac.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Yac Voice Messages",
  "description": "Share voice messages via email, social networks, and millions of other websites. Say hello to Yac.",
  "manifest_version": 3,
  "version": "2.0.1",
  "icons": {
    "16": "assets/images/icon16.png",
    "48": "assets/images/icon48.png",
    "128": "assets/images/icon128.png"
  },
  "action": {
    "default_popup": "popup/index.html",
    "default_icon": {
      "16": "assets/images/icon16.png",
      "24": "assets/images/icon24.png",
      "32": "assets/images/icon32.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/images/icon48.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}