NoBackSpace
Disables backspace, delete, and arrow, home/end, and insert on the nobackspace subreddit
什么是NoBackSpace?
NoBackSpace是由Alex Umrysh开发的Chrome扩展程序,该扩展的主要功能是“Disables backspace, delete, and arrow, home/end, and insert on the nobackspace subreddit”。
扩展截图
下载NoBackSpace扩展crx文件
下载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.
扩展基本信息
名称 | |
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 } |