Audible Control

Audible Control

Easily control the speed of your audible audiobook in the cloud player.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Audible Control",
  "version": "0.2",
  "permissions": [
    "storage"
  ],
  "description": "Easily control the speed of your audible audiobook in the cloud player.",
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.audible.co.uk/webplayer*",
        "*://*.audible.com/webplayer*",
        "*://*.audible.ca/webplayer*",
        "*://*.audible.com.au/webplayer*",
        "*://*.audible.co.jp/webplayer*",
        "*://*.audible.fr/webplayer*",
        "*://*.audible.de/webplayer*",
        "*://*.audible.es/webplayer*"
      ],
      "js": [
        "audible_playbackrate.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ]
}