NoBackSpace

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

Was ist NoBackSpace?

NoBackSpace ist eine Chrome-Erweiterung, die von Alex Umrysh entwickelt wurde, und ihr Hauptmerkmal ist "Disables backspace, delete, and arrow, home/end, and insert on the nobackspace subreddit".

Erweiterungsscreenshots

screenshot

NoBackSpace-Erweiterungs-CRX-Datei herunterladen

Laden Sie NoBackSpace-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name NoBackSpace NoBackSpace
ID dgpdeogkheaipdemcokfmnchiagllcpb
Offizielle URL https://chrome.google.com/webstore/detail/nobackspace/dgpdeogkheaipdemcokfmnchiagllcpb
Beschreibung Disables backspace, delete, and arrow, home/end, and insert on the nobackspace subreddit
Dateigröße 38.36 KB
Installationsanzahl 36
Aktuelle Version 1.0.0
Letztes Update 2014-06-24
Veröffentlichungsdatum 2014-06-24
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Alex Umrysh
Zahlungsart free
Erweiterungswebsite http://www.reddit.com/r/nobackspace
Unterstützte Sprachen 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
}