Block Ctrl W
To block ctrl w
What is Block Ctrl W?
Block Ctrl W is a Chrome extension developed by Lawrence Lin, and its main feature is "To block ctrl w".
Extension Screenshots
Download Block Ctrl W Extension CRX File
Download Block Ctrl W extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Block Ctrl W |
ID | mhbmkjeobiilhccdahbidgaabnnkpkia |
Official URL | https://chromewebstore.google.com/detail/block-ctrl-w/mhbmkjeobiilhccdahbidgaabnnkpkia |
Description | To block ctrl w |
File Size | 16.26 KB |
Installation Count | 748 |
Current Version | 1.0.3 |
Last Updated | 2022-06-26 |
Publish Date | 2022-05-26 |
Rating | 4.00/5 Total 2 Ratings |
Developer | Lawrence Lin |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } } |