Audible Tabs

Audible Tabs

Manage all of your audible tabs

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.4.2",
  "name": "Audible Tabs",
  "manifest_version": 2,
  "description": "Manage all of your audible tabs",
  "browser_action": {
    "default_title": "Audible Tabs",
    "default_popup": "popup.html",
    "default_icon": "img/icon-128.png"
  },
  "icons": {
    "128": "img/icon-128.png"
  },
  "web_accessible_resources": [
    "inject.html"
  ],
  "background": {
    "page": "background.html",
    "persistent": true,
    "matches": [
      "http://*/*",
      "https://*/*"
    ]
  },
  "commands": {
    "Show": {
      "suggested_key": {
        "default": "Ctrl+Shift+S",
        "mac": "Command+Shift+S"
      },
      "description": "Displays all tabs playing audio"
    },
    "Close": {
      "suggested_key": {
        "default": "Ctrl+Shift+C",
        "mac": "Command+Shift+C"
      },
      "description": "Closes all audible tabs"
    },
    "Mute": {
      "suggested_key": {
        "default": "Ctrl+Shift+M",
        "mac": "Command+Shift+M"
      },
      "description": "Mutes the current tab"
    },
    "MuteAll": {
      "suggested_key": {
        "default": "Ctrl+Shift+A",
        "mac": "Command+Shift+A"
      },
      "description": "Mutes all tabs"
    }
  },
  "permissions": [
    "contextMenus",
    "background",
    "tabs",
    "storage",
    "https://github.com/*"
  ],
  "content_security_policy": "default-src 'self'; font-src *; script-src 'self'; style-src * 'unsafe-inline'; img-src 'self' data:;"
}