Louder
This addon enables you to enhance the sound beyond the maximum level.
Louder क्या है?
Louder no9 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This addon enables you to enhance the sound beyond the maximum level."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Louder एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | Louder |
ID | jmpnkhemdplokdmeffenjlbpggphdapc |
आधिकारिक URL | https://chromewebstore.google.com/detail/louder/jmpnkhemdplokdmeffenjlbpggphdapc |
विवरण | This addon enables you to enhance the sound beyond the maximum level. |
फ़ाइल का आकार | 65.81 KB |
स्थापना संख्या | 4,015 |
वर्तमान संस्करण | 1.0.4 |
अंतिम अपडेट | 2023-07-26 |
प्रकाशन तिथि | 2019-10-27 |
रेटिंग | 3.39/5 कुल 18 रेटिंग्स |
डेवलपर | no9 |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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" } } |