AutoMute
Automatically mutes each new tab the instant it is opened.
Was ist AutoMute?
AutoMute ist eine Chrome-Erweiterung, die von danbhentschel entwickelt wurde, und ihr Hauptmerkmal ist "Automatically mutes each new tab the instant it is opened.".
Erweiterungsscreenshots
AutoMute-Erweiterungs-CRX-Datei herunterladen
Laden Sie AutoMute-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Are you getting tired of obnoxious ads blaring sound while you're browsing? AutoMute automatically mutes every tab opened in your browser, effectively allowing you to opt-in to hear audio in a web page, instead of forcing you to opt-out.
Grundlegende Informationen zur Erweiterung
Name | AutoMute |
ID | kjcdcbhfpjkcjinohfaaihpcmpnpmpie |
Offizielle URL | https://chromewebstore.google.com/detail/automute/kjcdcbhfpjkcjinohfaaihpcmpnpmpie |
Beschreibung | Automatically mutes each new tab the instant it is opened. |
Dateigröße | 72.51 KB |
Installationsanzahl | 11,057 |
Aktuelle Version | 2.1.1 |
Letztes Update | 2017-04-10 |
Veröffentlichungsdatum | 2017-04-10 |
Bewertung | 4.30/5 Insgesamt 92 Bewertungen |
Entwickler | danbhentschel |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "AutoMute", "description": "Automatically mutes each new tab the instant it is opened.", "version": "2.1.1", "permissions": [ "tabs", "storage", "notifications" ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": { "19": "Speaker_19.png", "38": "Speaker_38.png" }, "default_title": "AutoMute", "default_popup": "browserAction.html" }, "commands": { "mute-all": { "suggested_key": { "default": "Alt+Shift+L" }, "description": "Mute all tabs" }, "mute-tab": { "suggested_key": { "default": "Alt+Shift+M" }, "description": "Mute current tab" }, "mute-other": { "suggested_key": { "default": "Alt+Shift+O" }, "description": "Mute other tabs" } }, "icons": { "16": "Speaker_16.png", "48": "Speaker_48.png", "128": "Speaker_128.png" }, "options_ui": { "page": "options.html", "chrome_style": true } } |