Mute Tabs By Url
Automatically mutes tabs based on their url using a black list or a white list, and several other useful muting controls
Mute Tabs By Url क्या है?
Mute Tabs By Url https://www.vincentrubinetti.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically mutes tabs based on their url using a black list or a white list, and several other useful muting controls"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Mute Tabs By Url एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
-- Automatically mute tabs based on their url using a black list or a white list -- Panic "mute all" button -- Pause extension button -- List entries can have multiple keywords; keywords can have exclusion operator -- Manually un/mute specific tab -- Changeable keyboard shortcuts for all controls -- Option to always keep in-focus tab unmuted -- Option to always keep all tabs except in-focus tab muted -- Functions to quickly add/remove current url to/from list -- Settings synced across Chrome devices -- Works offline; no hotlinked css/js/images/fonts/etc -- Uses pure ("vanilla") Javascript; no third-party libraries/trackers/etc
एक्सटेंशन की मूल जानकारी
नाम | Mute Tabs By Url |
ID | bpokcenamldgbghabnklpmbkkcgcgdld |
आधिकारिक URL | https://chromewebstore.google.com/detail/mute-tabs-by-url/bpokcenamldgbghabnklpmbkkcgcgdld |
विवरण | Automatically mutes tabs based on their url using a black list or a white list, and several other useful muting controls |
फ़ाइल का आकार | 2.22 MB |
स्थापना संख्या | 2,519 |
वर्तमान संस्करण | 4.1 |
अंतिम अपडेट | 2019-02-14 |
प्रकाशन तिथि | 2019-02-13 |
रेटिंग | 4.38/5 कुल 50 रेटिंग्स |
डेवलपर | https://www.vincentrubinetti.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Mute Tabs By Url", "description": "Automatically mutes tabs based on their url using a black list or a white list, and several other useful muting controls", "version": "4.1", "icons": { "512": "icon512.png" }, "optional_permissions": [ "tabs", "notifications", "storage", "contextMenus" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_title": "Mute Tabs By Url", "default_icon": "icon512.png", "default_popup": "popup.html" }, "offline_enabled": true, "manifest_version": 2, "commands": { "01-mute-all": { "description": "Toggle \"Mute All Tabs\"", "suggested_key": { "default": "Ctrl+Shift+A", "mac": "Command+Shift+A" } }, "02-unmute-all": { "description": "Toggle \"Unmute All Tabs\"", "suggested_key": { "default": "Ctrl+Shift+Z", "mac": "Command+Shift+Z" } }, "03-unmute-current": { "description": "Toggle \"Always unmute current tab\"", "suggested_key": { "default": "Ctrl+Shift+S", "mac": "Command+Shift+S" } }, "04-mute-others": { "description": "Toggle \"Always mute all other tabs\"", "suggested_key": { "default": "Ctrl+Shift+X", "mac": "Command+Shift+X" } }, "05-use-black-list": { "description": "Toggle \"Use Black\/White List\"" }, "06-shown-list": { "description": "Toggle shown list" }, "07-add-domain": { "description": "Add domain to shown list" }, "08-remove-domain": { "description": "Remove domain from shown list" }, "09-add-page": { "description": "Add page to shown list" }, "10-remove-page": { "description": "Remove page from shown list" }, "11-manual-override": { "description": "Toggle tab manual un\/mute" } } } |