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 } |