Open in MS Edge™

Send current page's link or all tabs to Microsoft Edge browser or define optional left-click opening rules.

ما هو Open in MS Edge™؟

Open in MS Edge™ هو إضافة Chrome تم تطويرها بواسطة rynu.smith، والميزة الرئيسية لها هي "Send current page's link or all tabs to Microsoft Edge browser or define optional left-click opening rules.".

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

screenshot

تحميل ملف CRX للإضافة Open in MS Edge™

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

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

                        You can send HTML links to Microsoft's Edge browser with a single click. The extension includes a browser action button that, when activated, sends the URL from the active tab to the Edge browser. Optionally, you can instruct the extension to close the tab once the URL transfer is complete. It's important to note that, like similar extensions, this one requires a native component (macOS, Windows, and Linux) for communication with the external browser.

Additionally, the extension enhances your productivity by adding a context menu option for links, allowing you to send them to the Edge browser with a simple right-click. To configure the extension to your needs, head to the options page and specify which hostnames should open in the Edge browser.

Since the extension use a native component, it can initiate a new instance if it detects no open Edge windows. This component has a built-in tool to help you locate the Edge executable.

The extension provides several context menu items within the browser action button, enabling you to send all tabs within the current window or  across all windows to the Edge browser. Also, it has two context menu items for link and text selection. It will extract links from selection area and open links in the Edge browser.

--- Legal Disclaimer
Please be aware that 'Edge' is a registered trademark of Microsoft Inc. in the United States and other countries. This extension is an independent project and is not affiliated with the Edge team or Microsoft Inc. in any way.                    

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

الاسم Open in MS Edge™ Open in MS Edge™
ID mjoebkkejejidnkfdekpbooceogbapnf
عنوان URL الرسمي https://chromewebstore.google.com/detail/open-in-ms-edge/mjoebkkejejidnkfdekpbooceogbapnf
الوصف Send current page's link or all tabs to Microsoft Edge browser or define optional left-click opening rules.
حجم الملف 217 KB
عدد التثبيتات 20,000
النسخة الحالية 0.3.3
آخر تحديث 2023-09-26
تاريخ النشر 2020-02-16
تقييم 3.77/5 مجموع تقييمات 35
المطور rynu.smith
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://webextension.org/listing/open-in.html?from=edge
عنوان صفحة المساعدة https://webextension.org/listing/open-in.html?from=edge
عنوان صفحة سياسة الخصوصية https://add0n.com/policies/rynu.smith.txt
اللغات المدعومة de,en,fr,nl,es,it,pt-BR,pt-PT,ru,zh-CN,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open in MS Edge\u2122",
    "description": "__MSG_description__",
    "default_locale": "en",
    "version": "0.3.3",
    "manifest_version": 3,
    "permissions": [
        "activeTab",
        "storage",
        "contextMenus",
        "nativeMessaging"
    ],
    "optional_permissions": [
        "tabs",
        "downloads"
    ],
    "background": {
        "service_worker": "worker.js"
    },
    "storage": {
        "managed_schema": "edge-schema.json"
    },
    "homepage_url": "https:\/\/webextension.org\/listing\/open-in.html?from=edge",
    "icons": {
        "16": "\/data\/icons\/16.png",
        "32": "\/data\/icons\/32.png",
        "48": "\/data\/icons\/48.png",
        "64": "\/data\/icons\/64.png",
        "128": "\/data\/icons\/128.png",
        "256": "\/data\/icons\/256.png",
        "512": "\/data\/icons\/512.png"
    },
    "action": [],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "\/data\/inject\/chrome.js"
            ],
            "world": "ISOLATED",
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "\/data\/inject\/page.js"
            ],
            "world": "MAIN",
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "options_ui": {
        "page": "\/data\/options\/index.html",
        "open_in_tab": true
    },
    "commands": {
        "_execute_action": []
    }
}