Link Fixer

Restores consistent ctrl+click, shift+click, cmd+click and middle-click behaviour when clicking links.

ما هو Link Fixer؟

Link Fixer هو إضافة Chrome تم تطويرها بواسطة danielnixon، والميزة الرئيسية لها هي "Restores consistent ctrl+click, shift+click, cmd+click and middle-click behaviour when clicking links.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Link Fixer

قم بتنزيل ملفات الامتداد Link Fixer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        The default behaviour of ctrl+click, shift+click, cmd+click (on macOS) and middle-click when clicking on links is to open the link in a new tab or new window.

This behaviour is sometimes broken by careless developers.

This add-on restores the default behaviour, ensuring the modifier keys always cause links to open in a new tab.                    

معلومات أساسية عن التمديد

الاسم Link Fixer Link Fixer
ID mfgoieafikaldiglpkfgifoeigjcifmk
عنوان URL الرسمي https://chromewebstore.google.com/detail/link-fixer/mfgoieafikaldiglpkfgifoeigjcifmk
الوصف Restores consistent ctrl+click, shift+click, cmd+click and middle-click behaviour when clicking links.
حجم الملف 88.84 KB
عدد التثبيتات 1,358
النسخة الحالية 1.11
آخر تحديث 2019-07-07
تاريخ النشر 2019-07-06
تقييم 4.50/5 مجموع تقييمات 28
المطور danielnixon
نوع الدفع free
موقع الإضافة https://github.com/danielnixon/link-fixer
عنوان صفحة المساعدة https://github.com/danielnixon/link-fixer/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Link Fixer",
    "description": "Restores consistent ctrl+click, shift+click, cmd+click and middle-click behaviour when clicking links.",
    "version": "1.11",
    "homepage_url": "https:\/\/github.com\/danielnixon\/link-fixer",
    "icons": {
        "48": "icons\/link-48.png"
    },
    "background": {
        "scripts": [
            "background-script.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "browser_style": true
    },
    "permissions": [
        "browserSettings",
        "storage"
    ],
    "applications": {
        "gecko": {
            "id": "{18b670e2-67df-4b26-b9b0-34835d1f062a}"
        }
    }
}