NoBackSpace
Disables backspace, delete, and arrow, home/end, and insert on the nobackspace subreddit
Apa itu NoBackSpace?
NoBackSpace adalah ekstensi Chrome yang dikembangkan oleh Alex Umrysh, dan fitur utamanya adalah "Disables backspace, delete, and arrow, home/end, and insert on the nobackspace subreddit".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi NoBackSpace
Unduh file ekstensi NoBackSpace dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
This extension disables backspace, insert, home, end, pageup/pagedown, the the arrow keys, and delete on the /r/nobackspace subreddit.
Informasi Dasar Ekstensi
Nama | |
ID | dgpdeogkheaipdemcokfmnchiagllcpb |
URL Resmi | https://chrome.google.com/webstore/detail/nobackspace/dgpdeogkheaipdemcokfmnchiagllcpb |
Deskripsi | Disables backspace, delete, and arrow, home/end, and insert on the nobackspace subreddit |
Ukuran File | 38.36 KB |
Jumlah Instalasi | 36 |
Versi Saat Ini | 1.0.0 |
Terakhir Diperbarui | 2014-06-24 |
Tanggal Publikasi | 2014-06-24 |
Penilaian | 5.00/5 Total 2 Penilaian |
Pengembang | Alex Umrysh |
Tipe Pembayaran | free |
Situs Ekstensi | http://www.reddit.com/r/nobackspace |
Bahasa yang Didukung | 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 } |