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".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة NoBackSpace
قم بتنزيل ملفات الامتداد NoBackSpace بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 } |