NoBackSpace

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

NoBackSpaceคืออะไร?

NoBackSpace เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Alex Umrysh และคุณลักษณะหลักของมันคือ "Disables backspace, delete, and arrow, home/end, and insert on the nobackspace subreddit"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย NoBackSpace

ดาวน์โหลดไฟล์ส่วนขยาย NoBackSpace ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ NoBackSpace NoBackSpace
ID dgpdeogkheaipdemcokfmnchiagllcpb
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/nobackspace/dgpdeogkheaipdemcokfmnchiagllcpb
คำอธิบาย Disables backspace, delete, and arrow, home/end, and insert on the nobackspace subreddit
ขนาดไฟล์ 38.36 KB
จำนวนการติดตั้ง 36
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2014-06-24
วันที่เผยแพร่ 2014-06-24
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Alex Umrysh
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://www.reddit.com/r/nobackspace
ภาษาที่รองรับ 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
}