Tab Focus Sound Notifier

Phát âm thanh nhỏ khi tab hiện tại của người dùng mất hoặc lấy lại tiêu điểm.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Tab Focus Sound Notifier",
  "version": "1.0",
  "description": "Phát âm thanh nhỏ khi tab hiện tại của người dùng mất hoặc lấy lại tiêu điểm.",
  "permissions": [
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "48": "icons/icon.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{d12b09ee-1f62-4618-9dcc-5fbb0f3661a2}"
    }
  }
}