Open Multiple Links

Select text with links and open them all in new tabs

ما هو Open Multiple Links؟

Open Multiple Links هو إضافة Chrome تم تطويرها بواسطة Marcin Jahn، والميزة الرئيسية لها هي "Select text with links and open them all in new tabs".

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

screenshot

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

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

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

                        Highlight any text and open all the included links at once, in new tabs. Just select the text containing links, right-click it, and select "Open links in new tabs".

The right-click context menu entry for "Open links in new tabs" appears only when the selected text contains any links.

Note that this extension opens only "clickable" links. If a given link is just a text, it will not be included.                    

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

الاسم Open Multiple Links Open Multiple Links
ID aihgofmdijjhegajmdomlafeiklofndl
عنوان URL الرسمي https://chromewebstore.google.com/detail/open-multiple-links/aihgofmdijjhegajmdomlafeiklofndl
الوصف Select text with links and open them all in new tabs
حجم الملف 22.89 KB
عدد التثبيتات 2,362
النسخة الحالية 1.0.0
آخر تحديث 2023-01-10
تاريخ النشر 2023-01-08
تقييم 1.67/5 مجموع تقييمات 6
المطور Marcin Jahn
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://marcinjahn.com
عنوان صفحة المساعدة https://github.com/marcinjahn/open-multiple-links-browser-extension/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open Multiple Links",
    "description": "Select text with links and open them all in new tabs",
    "version": "1.0.0",
    "manifest_version": 3,
    "icons": {
        "16": "assets\/icons\/icon-16.png",
        "32": "assets\/icons\/icon-32.png",
        "64": "assets\/icons\/icon-64.png",
        "128": "assets\/icons\/icon-128.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}