NoBackSpace
Disables backspace, delete, and arrow, home/end, and insert on the nobackspace subreddit
Cos'è NoBackSpace?
NoBackSpace è un'estensione di Chrome sviluppata da Alex Umrysh, e la sua funzione principale è "Disables backspace, delete, and arrow, home/end, and insert on the nobackspace subreddit".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione NoBackSpace
Scarica i file di estensione NoBackSpace 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
This extension disables backspace, insert, home, end, pageup/pagedown, the the arrow keys, and delete on the /r/nobackspace subreddit.
Informazioni di Base sull'Estensione
Nome | |
ID | dgpdeogkheaipdemcokfmnchiagllcpb |
URL Ufficiale | https://chrome.google.com/webstore/detail/nobackspace/dgpdeogkheaipdemcokfmnchiagllcpb |
Descrizione | Disables backspace, delete, and arrow, home/end, and insert on the nobackspace subreddit |
Dimensione del File | 38.36 KB |
Conteggio Installazioni | 36 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2014-06-24 |
Data di Pubblicazione | 2014-06-24 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | Alex Umrysh |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://www.reddit.com/r/nobackspace |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "NoBackSpace", "version": "1.0.0", "description": "Disables backspace, delete, and arrow, home\/end, and insert on the nobackspace subreddit", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/www.reddit.com\/r\/nobackspace\/*", "https:\/\/www.reddit.com\/r\/nobackspace\/*" ], "js": [ "jq.js", "injectScript.js", "backspace.js" ] } ], "page_action": { "default_icon": "icon-19.png" }, "icons": { "128": "icon-128.png", "48": "icon-48.png" }, "permissions": [ "tabs" ], "manifest_version": 2 } |