NoBackSpace

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

Vad är NoBackSpace?

NoBackSpace är en Chrome-tillägg utvecklad av Alex Umrysh, och dess huvudfunktion är "Disables backspace, delete, and arrow, home/end, and insert on the nobackspace subreddit".

Tilläggsskärmbilder

screenshot

Ladda ner NoBackSpace-förlängningens CRX-fil

Ladda ner NoBackSpace-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn NoBackSpace NoBackSpace
ID dgpdeogkheaipdemcokfmnchiagllcpb
Officiell webbadress https://chrome.google.com/webstore/detail/nobackspace/dgpdeogkheaipdemcokfmnchiagllcpb
Beskrivning Disables backspace, delete, and arrow, home/end, and insert on the nobackspace subreddit
Filstorlek 38.36 KB
Antal Installationer 36
Aktuell Version 1.0.0
Senast Uppdaterad 2014-06-24
Publiceringsdatum 2014-06-24
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare Alex Umrysh
Betalningssätt free
Tilläggswebbplats http://www.reddit.com/r/nobackspace
Stödda Språk 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
}