Links Panel

Collate all the links on the page into an easily accessible panel

ما هو Links Panel؟

Links Panel هو إضافة Chrome تم تطويرها بواسطة lonm، والميزة الرئيسية لها هي "Collate all the links on the page into an easily accessible panel".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Links Panel

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

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

                        Allows you to quickly see and filter all the links on the current page.

Use the options to configure how the links appear, and what to consider at when filtering (URL, Title..., Case matching).

Use Ctrl or Shift when clicking to select multiple links, and press enter to open them all.

You can also optionally have links sent to a follower tab.                    

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

الاسم Links Panel Links Panel
ID nnnheolekoehkioeicninoneagaimnjd
عنوان URL الرسمي https://chromewebstore.google.com/detail/links-panel/nnnheolekoehkioeicninoneagaimnjd
الوصف Collate all the links on the page into an easily accessible panel
حجم الملف 18.2 KB
عدد التثبيتات 277
النسخة الحالية 1.4.4
آخر تحديث 2021-09-28
تاريخ النشر 2019-11-27
تقييم 5.00/5 مجموع تقييمات 2
المطور lonm
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/LonMcGregor/LinksPanel
عنوان صفحة المساعدة https://github.com/LonMcGregor/LinksPanel
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_name__",
    "version": "1.4.4",
    "default_locale": "en",
    "description": "__MSG_description__",
    "icons": {
        "16": "16.png",
        "32": "32.png",
        "48": "48.png",
        "128": "128.png"
    },
    "author": "L\u00e9on McGregor",
    "homepage_url": "https:\/\/github.com\/LonMcGregor\/LinksPanel",
    "background": {
        "scripts": [
            "panel.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "16": "16.png",
            "24": "24.png",
            "32": "32.png"
        },
        "default_title": "__MSG_name__",
        "default_popup": "panel.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "content.js"
    ],
    "permissions": [
        "",
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "incognito": "split"
}