AutoMute
Automatically mutes each new tab the instant it is opened.
AutoMute क्या है?
AutoMute danbhentschel द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically mutes each new tab the instant it is opened."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में AutoMute एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | AutoMute |
ID | kjcdcbhfpjkcjinohfaaihpcmpnpmpie |
आधिकारिक URL | https://chromewebstore.google.com/detail/automute/kjcdcbhfpjkcjinohfaaihpcmpnpmpie |
विवरण | Automatically mutes each new tab the instant it is opened. |
फ़ाइल का आकार | 72.51 KB |
स्थापना संख्या | 11,057 |
वर्तमान संस्करण | 2.1.1 |
अंतिम अपडेट | 2017-04-10 |
प्रकाशन तिथि | 2017-04-10 |
रेटिंग | 4.30/5 कुल 92 रेटिंग्स |
डेवलपर | danbhentschel |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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 } } |