Link Preview Sidebar

Preview links in a sidebar instead of a new tab.

ما هو Link Preview Sidebar؟

Link Preview Sidebar هو إضافة Chrome تم تطويرها بواسطة felixfbecker، والميزة الرئيسية لها هي "Preview links in a sidebar instead of a new tab.".

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

screenshot

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

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

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

                        There are two ways to open a link in the sidebar:

• Right click on a link and select "Open in sidebar"
• Hold the Alt key while clicking a link (⌥ on macOS)




Icon made by Kirill Kazachek from www.flaticon.com.                    

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

الاسم Link Preview Sidebar Link Preview Sidebar
ID cdnefgebicfnnnjmbnlldhfjmcblfhob
عنوان URL الرسمي https://chromewebstore.google.com/detail/link-preview-sidebar/cdnefgebicfnnnjmbnlldhfjmcblfhob
الوصف Preview links in a sidebar instead of a new tab.
حجم الملف 74.34 KB
عدد التثبيتات 2,158
النسخة الحالية 1.0.6
آخر تحديث 2020-12-31
تاريخ النشر 2020-12-12
تقييم 4.29/5 مجموع تقييمات 17
المطور felixfbecker
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/felixfbecker/link-preview-sidebar
عنوان صفحة المساعدة https://github.com/felixfbecker/link-preview-sidebar/issues
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Link Preview Sidebar",
    "description": "Preview links in a sidebar instead of a new tab.",
    "version": "1.0.6",
    "permissions": [
        "contextMenus",
        "webRequest",
        "webRequestBlocking",
        "tabs",
        ""
    ],
    "icons": {
        "128": "images\/icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "src\/content.js",
        "src\/content.css",
        "src\/embedder.html"
    ],
    "background": {
        "scripts": [
            "src\/background.js"
        ]
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "link-preview-sidebar@felixfbecker"
        }
    }
}