Louder

This addon enables you to enhance the sound beyond the maximum level.

Qu'est-ce que Louder ?

Louder est une extension Chrome développée par no9, et sa fonction principale est "This addon enables you to enhance the sound beyond the maximum level.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Louder

Téléchargez les fichiers d'extension Louder au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        The extension is useful when the sound on a webpage is too quiet despite setting it to the maximum volume. It can sometimes help to balance the volume of sound when it varies significantly over time. It works on both video and audio elements on pages that allow it. The extension is activated by clicking the left mouse button on its icon. After clicking on the extension's icon with the right mouse button, a menu with additional options appears, which can be useful in certain situations. To fully reset the sound after adjusting the volume using the extension, it is recommended to reload the page.

Known issues:
-    On some pages, it is not possible to adjust the volume of the played elements. This is due to how the specific page is designed.
-    On some pages, when clicking on the extension button, the browser may mute the sound. This is due to the security configuration of the specific page or the server it is hosted on and unfortunately cannot be detected from the extension's point of view.

If you find this extension useful, you may consider supporting the author with a donation of any amount. Check the menu by right-clicking the extension button.                    

Informations de Base sur l'Extension

Nom Louder Louder
ID jmpnkhemdplokdmeffenjlbpggphdapc
URL Officiel https://chromewebstore.google.com/detail/louder/jmpnkhemdplokdmeffenjlbpggphdapc
Description This addon enables you to enhance the sound beyond the maximum level.
Taille du Fichier 65.81 KB
Nombre d'Installations 4,015
Version Actuelle 1.0.4
Dernière Mise à Jour 2023-07-26
Date de Publication 2019-10-27
Évaluation 3.39/5 Total 18 Évaluations
Développeur no9
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Louder",
    "description": "This addon enables you to enhance the sound beyond the maximum level.",
    "version": "1.0.4",
    "author": "[email protected]",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "js": [
                "louder.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "action": {
        "default_icon": "icon19.png"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png"
    }
}