Headspace Volume Control

Adds a volume controller to audio elements on Headspace.

What is Headspace Volume Control?

Headspace Volume Control is a Chrome extension developed by skend, and its main feature is "Adds a volume controller to audio elements on Headspace.".

Extension Screenshots

screenshot

Download Headspace Volume Control Extension CRX File

Download Headspace Volume Control extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This extension provides a volume bar on Headspace when listening to audio-only meditation guidance.                    

Extension Basic Information

Name Headspace Volume Control Headspace Volume Control
ID amnmlkcapciglhlipjglajfnncapccac
Official URL https://chromewebstore.google.com/detail/headspace-volume-control/amnmlkcapciglhlipjglajfnncapccac
Description Adds a volume controller to audio elements on Headspace.
File Size 47.44 KB
Installation Count 642
Current Version 0.1
Last Updated 2018-03-13
Publish Date 2018-03-13
Rating 3.75/5 Total 4 Ratings
Developer skend
Email [email protected]
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Headspace Volume Control",
    "version": "0.1",
    "description": "Adds a volume controller to audio elements on Headspace.",
    "permissions": [
        "https:\/\/my.headspace.com\/*"
    ],
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/my.headspace.com\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "controller.js"
            ],
            "run_at": "document_end"
        }
    ]
}