NoBackSpace

Disables backspace, delete, and arrow, home/end, and insert on the nobackspace subreddit

What is NoBackSpace?

NoBackSpace is a Chrome extension developed by Alex Umrysh, and its main feature is "Disables backspace, delete, and arrow, home/end, and insert on the nobackspace subreddit".

Extension Screenshots

screenshot

Download NoBackSpace Extension CRX File

Download NoBackSpace 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

                        This extension disables backspace, insert, home, end, pageup/pagedown, the the arrow keys, and delete on the /r/nobackspace subreddit.                    

Extension Basic Information

Name NoBackSpace NoBackSpace
ID dgpdeogkheaipdemcokfmnchiagllcpb
Official URL https://chrome.google.com/webstore/detail/nobackspace/dgpdeogkheaipdemcokfmnchiagllcpb
Description Disables backspace, delete, and arrow, home/end, and insert on the nobackspace subreddit
File Size 38.36 KB
Installation Count 36
Current Version 1.0.0
Last Updated 2014-06-24
Publish Date 2014-06-24
Rating 5.00/5 Total 2 Ratings
Developer Alex Umrysh
Payment Type free
Extension Website http://www.reddit.com/r/nobackspace
Supported Languages 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
}