Block Ctrl W
To block ctrl w
Wat is Block Ctrl W?
Block Ctrl W is een Chrome-extensie ontwikkeld door Lawrence Lin, en de belangrijkste functie is "To block ctrl w".
Extensie Screenshots
Download het CRX-bestand van de extensie Block Ctrl W
Download Block Ctrl W-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 Basisinformatie over de Extensie
| Naam | |
| ID | mhbmkjeobiilhccdahbidgaabnnkpkia |
| Officiële URL | https://chromewebstore.google.com/detail/block-ctrl-w/mhbmkjeobiilhccdahbidgaabnnkpkia |
| Beschrijving | To block ctrl w |
| Bestandsgrootte | 16.26 KB |
| Aantal Installaties | 748 |
| Huidige Versie | 1.0.3 |
| Laatst Bijgewerkt | 2022-06-26 |
| Publicatiedatum | 2022-05-26 |
| Beoordeling | 4.00/5 Totaal 2 Beoordelingen |
| Ontwikkelaar | Lawrence Lin |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
}
}
} | |