YouTube Volume Fix

This Chrome extension listens for the "onvolumechange" event on YouTube and doubles the what YouTube is setting the volume to for a…

Wat is YouTube Volume Fix?

YouTube Volume Fix is een Chrome-extensie ontwikkeld door Connor Linfoot, en de belangrijkste functie is "This Chrome extension listens for the "onvolumechange" event on YouTube and doubles the what YouTube is setting the volume to for a…".

Download het CRX-bestand van de extensie YouTube Volume Fix

Download YouTube Volume Fix-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        This Chrome extension listens for the "onvolumechange" event on YouTube and doubles the what YouTube is setting the volume to for a more accurate volume output.                    

Basisinformatie over de Extensie

Naam YouTube Volume Fix YouTube Volume Fix
ID okocpealpliblhljcgldklklkifaoioa
Officiële URL https://chrome.google.com/webstore/detail/youtube-volume-fix/okocpealpliblhljcgldklklkifaoioa
Beschrijving This Chrome extension listens for the "onvolumechange" event on YouTube and doubles the what YouTube is setting the volume to for a…
Bestandsgrootte 14.8 KB
Aantal Installaties 39
Huidige Versie 1.0.2
Laatst Bijgewerkt 2017-06-20
Publicatiedatum 2017-06-20
Beoordeling 2.00/5 Totaal 4 Beoordelingen
Ontwikkelaar Connor Linfoot
Betalingswijze free
Ondersteunde Talen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Volume Fix",
    "version": "1.0.2",
    "minimum_chrome_version": "18",
    "manifest_version": 2,
    "description": "",
    "icons": {
        "16": "\/images\/icon16.png",
        "48": "\/images\/icon48.png",
        "128": "\/images\/icon128.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "webRequest"
    ],
    "content_scripts": [
        {
            "all_frames": false,
            "run_at": "document_end",
            "js": [
                "youtube-volume-fix.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}