NoBackSpace
Disables backspace, delete, and arrow, home/end, and insert on the nobackspace subreddit
NoBackSpace क्या है?
NoBackSpace Alex Umrysh द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Disables backspace, delete, and arrow, home/end, and insert on the nobackspace subreddit"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में NoBackSpace एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 } |