Binaural Webpage

Binaural Webpage

タブの音声に対してボリュームの調整、パンニング、リミッターの設定などができる拡張機能

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Binaural Webpage",
  "description": "タブの音声に対してボリュームの調整、パンニング、リミッターの設定などができる拡張機能",
  "version": "1.0.0",
  "permissions": [
    "activeTab",
    "tabCapture"
  ],
  "icons": {
    "16": "img/icon16.png",
    "24": "img/icon24.png",
    "32": "img/icon32.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "background": {
    "persistent": true,
    "scripts": [
      "js/funcs.js",
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "img/icon16_off.png",
      "24": "img/icon24_off.png",
      "32": "img/icon32_off.png"
    },
    "default_popup": "popup_page.html"
  },
  "manifest_version": 2
}