AutoMute Incognito
This extension automatically mutes icognito tabs. Use CTRL+M to toogle sound of current tab!
什么是AutoMute Incognito?
AutoMute Incognito是由cilenco开发的Chrome扩展程序,该扩展的主要功能是“This extension automatically mutes icognito tabs. Use CTRL+M to toogle sound of current tab!”。
下载AutoMute Incognito扩展crx文件
下载AutoMute Incognito扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
| 名称 | |
| ID | egpmkeedlhphenpnjhlnlaohcmbmmccj |
| 官方URL | https://chromewebstore.google.com/detail/automute-incognito/egpmkeedlhphenpnjhlnlaohcmbmmccj |
| 简介 | This extension automatically mutes icognito tabs. Use CTRL+M to toogle sound of current tab! |
| 文件大小 | 13.94 KB |
| 安装次数 | 501 |
| 当前版本 | 1.2 |
| 更新时间 | 2016-11-04 |
| 上架时间 | 2016-11-04 |
| 评分 | 3.67/5 共6次评分 |
| 开发者 | cilenco |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "AutoMute Incognito",
"description": "This extension automatically mutes icognito tabs.\nUse CTRL+M to toogle sound of current tab!",
"version": "1.2",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_icon": "res\/icon.png"
},
"icons": {
"48": "res\/icon.png",
"128": "res\/store_icon.png"
},
"commands": {
"toglePageMute": {
"description": "Toggle sound of current Tab",
"suggested_key": {
"default": "Ctrl+M",
"windows": "Ctrl+M",
"mac": "Command+M",
"chromeos": "Ctrl+M",
"linux": "Ctrl+M"
}
}
}
} | |