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によって開発されたChromeの拡張機能で、その主な機能は「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拡張機能のCRXファイルをダウンロード
Mute Tabs By Url拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
-- 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 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
}
}
} | |