DevilEar

DevilEar

Pan and volume controller for each tab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "DevilEar",
  "version": "2.0.0",
  "author": "@nulltypo",
  "manifest_version": 3,
  "description": "__MSG_ext_desc__",
  "default_locale": "en",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "action": {
    "default_icon": "icons/icon128.png",
    "default_popup": "de-popup.html",
    "default_title": "DevilEar"
  },
  "background": {
    "service_worker": "de-background.js"
  },
  "permissions": [
    "activeTab",
    "storage",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "de-content.js"
      ]
    }
  ]
}