Block Ctrl W
To block ctrl w
什么是Block Ctrl W?
Block Ctrl W是由Lawrence Lin开发的Chrome扩展程序,该扩展的主要功能是“To block ctrl w”。
扩展截图
下载Block Ctrl W扩展crx文件
下载Block Ctrl W扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
To block Ctrl + w and send notify via post message
#Usage
1. Add Apps to Chrome
2. Open chrome://extensions/shortcuts
3. Find out “Block Ctrl W”
4. Click the Edit button
5. Press Ctrl & W button at the same time 扩展基本信息
| 名称 | |
| ID | mhbmkjeobiilhccdahbidgaabnnkpkia |
| 官方URL | https://chromewebstore.google.com/detail/block-ctrl-w/mhbmkjeobiilhccdahbidgaabnnkpkia |
| 简介 | To block ctrl w |
| 文件大小 | 16.26 KB |
| 安装次数 | 748 |
| 当前版本 | 1.0.3 |
| 更新时间 | 2022-06-26 |
| 上架时间 | 2022-05-26 |
| 评分 | 4.00/5 共2次评分 |
| 开发者 | Lawrence Lin |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Block Ctrl W",
"description": "To block ctrl w",
"version": "1.0.3",
"manifest_version": 3,
"icons": {
"128": "icon.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"content.js"
]
}
],
"permissions": [
"activeTab"
],
"commands": {
"block-ctrl-w": {
"suggested_key": {
"default": "Ctrl+W"
},
"description": "block ctrl w"
}
}
} | |