Block Ctrl W
To block ctrl w
Cos'è Block Ctrl W?
Block Ctrl W è un'estensione di Chrome sviluppata da Lawrence Lin, e la sua funzione principale è "To block ctrl w".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Block Ctrl W
Scarica i file di estensione Block Ctrl W in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 Informazioni di Base sull'Estensione
| Nome | |
| ID | mhbmkjeobiilhccdahbidgaabnnkpkia |
| URL Ufficiale | https://chromewebstore.google.com/detail/block-ctrl-w/mhbmkjeobiilhccdahbidgaabnnkpkia |
| Descrizione | To block ctrl w |
| Dimensione del File | 16.26 KB |
| Conteggio Installazioni | 748 |
| Versione Corrente | 1.0.3 |
| Ultimo Aggiornamento | 2022-06-26 |
| Data di Pubblicazione | 2022-05-26 |
| Valutazione | 4.00/5 Totale 2 Valutazioni |
| Sviluppatore | Lawrence Lin |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
}
}
} | |