Disable links.
Hold Ctrl+Alt to disable the links temporarily.
ما هو Disable links.؟
Disable links. هو إضافة Chrome تم تطويرها بواسطة alienav، والميزة الرئيسية لها هي "Hold Ctrl+Alt to disable the links temporarily.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Disable links.
قم بتنزيل ملفات الامتداد Disable links. بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension is deprecated - Chrome has a built-in feature for this, just holding Alt while selecting prevents the link from being clicked. You can safely remove it. Previous description: This extension disables links when you hold Ctrl+Alt. This allows to select text from the middle of the link, and generally eases selection, eliminating the risk to click the link while copying it. “Broken link” icon by Arthur Abt, from thenounproject.com collection.
معلومات أساسية عن التمديد
الاسم | Disable links. |
ID | kgghjfabpkpodeancnenkndklnomjpbf |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/disable-links/kgghjfabpkpodeancnenkndklnomjpbf |
الوصف | Hold Ctrl+Alt to disable the links temporarily. |
حجم الملف | 9.21 KB |
عدد التثبيتات | 1,254 |
النسخة الحالية | 1.0 |
آخر تحديث | 2022-06-18 |
تاريخ النشر | 2014-07-14 |
تقييم | 3.36/5 مجموع تقييمات 33 |
المطور | alienav |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Disable links.", "description": "Hold Ctrl+Alt to disable the links temporarily.", "version": "1.0", "manifest_version": 2, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "keyboardhook.js" ] } ], "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ] } |