NoBackSpace

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

NoBackSpace là gì?

NoBackSpace là một tiện ích mở rộng Chrome được phát triển bởi Alex Umrysh, và tính năng chính của nó là "Disables backspace, delete, and arrow, home/end, and insert on the nobackspace subreddit".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng NoBackSpace

Tải xuống các tệp mở rộng NoBackSpace dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên NoBackSpace NoBackSpace
ID dgpdeogkheaipdemcokfmnchiagllcpb
URL Chính Thức https://chrome.google.com/webstore/detail/nobackspace/dgpdeogkheaipdemcokfmnchiagllcpb
Mô tả Disables backspace, delete, and arrow, home/end, and insert on the nobackspace subreddit
Kích Thước Tệp 38.36 KB
Số Lần Cài Đặt 36
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2014-06-24
Ngày Phát Hành 2014-06-24
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Alex Umrysh
Loại Thanh Toán free
Trang Web Mở Rộng http://www.reddit.com/r/nobackspace
Ngôn Ngữ Được Hỗ Trợ 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
}